Thanks for sharing your experience with our Google Maps plugin. On the installation page (http://ww.wp.xz.cn/extend/plugins/pronamic-google-maps/installation/) you can read how to install the plugin.
The Google Maps will not automatically appear on posts or pages. Unfortunately we have no plans to develop this functionality. The plugin is mainly intended for programmers and webdevelopers.
Sorry to hear that you are not going to use our plugin.
Thanks for the quick reply. Actually, I had hoped this one would work, as the functions looked nice.
It needs some kind of hook into the GUI, perhaps at the page/post edit location. Alternatively, a more clear description of exactly WHICH file within the templates to edit would be nice. I can edit templates if someone says “Go to that file. Copy and paste THIS TEXT HERE in this place. Save it and refresh.”
When I started looking at all the various template pages available from within WP, I quickly realized I couldn’t just start editing any page at random, or I was likely to break the system.
🙂
Could you at least consider hinting which page to edit?
Some hints ;):
<?php
pronamic_google_maps(array(
'width' => 290 ,
'height' => 200
));
?>
You should add the code above to one of the following files within the loop.
-
single.php
If you want to show the map on a single post page.
-
page.php
If you want to show the map on a page.
-
loop.php
If you want to show the map on the posts overview page.
A good place to add the code is right after the <?php the_content(); ?> code. Good luck!