Oh, I see. The code for the map is basically always the same. Only the id
is different. In your case it should be id="gmap_19_0"
. If you take a look at your source code at the bottom you see something like gmap.init([{ selector: 'gmap_19_0', mapOptions: ...
– the value of selector
should be the id of your map container.
Besides that I got another idea: Usually WordPress doesn’t display the PHP notice and warning messages unless you enable the debugging mode. Have a look at the wp-config.php
file in your Worpress directory, look for the following line define('WP_DEBUG', false);
and change that to define('WP_DEBUG', true);
. If you cannot find the line, just add this definition to your config file. Now try to open the page again and see if you get some warning or error messages. You can copy them and post it here…