07/10/2013 at 8:23 pm
#264656
Keymaster
@ kroussel
Ok, I going to assume you have cMap version 3.0.x installed with the following instructions.
Open the card.php
file found here:
../wp-content/plugins/cmap/
Look for the following on line 102:
$mapDiv = '<div class="cn-gmap" id="map-container-' . $entry->getRuid() . '" style="display: none;">' . $gMap . '</div>';
You’ll need to add you title like so:
$mapDiv = '<div class="cn-gmap" id="map-container-' . $entry->getRuid() . '" style="display: none;"><h4>My Map Title</h4>' . $gMap . '</div>';
That should do it. Now, save and upload the modified file overwriting the original. Of course you should backup first.
Hope that helps.