WPGMaps
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] google maps crashingHi Naz.
The last update was only tested on WordPress 4.4. Unfortunately no bugs or features were added to that update.
The next update should contain this fix though. Should it be urgent though, please get in touch with me via our contact page so I can send you the fix in the mean time (http://www.wpgmaps.com/contact-us/)
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Capture the info regarding the seachesHi Naz.
So sorry for only getting back to you now.
Unfortunately not at this point in time, however it’s a very good idea and one I have added to our development schedule as a feature request for a future release.
So sorry we don’t have this available at the moment though.
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Map showing empty mapHi Joe.
So sorry for the confusion caused. I hope you come right with the plugin though 🙂
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Automatic Mapping of Registered Users?Hi there.
So sorry for only getting back to you now.
Unfortunately not at this point in time. This can be done by making quite a few changes to the plugin’s code, however they will be undone once you update the plugin – would you be comfortable with this?
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Unable to update WP Google MapHi Abramarket
This forum is strictly for the free version. Please get in touch with us on http://www.wpgmaps.com/contact-us/Gryan, please may you also follow that link so I can find out more information please.
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Map showing empty mapHi Joe
Ah OK, thank you for that. I see it is an intermittent error.Please open wpGoogleMaps.php and search for this:
jQuery('body').on('tabsactivate', function(event, ui) { MYMAP.init('#wpgmza_map', myLatLng, <?php echo $start_zoom; ?>); UniqueCode=Math.round(Math.random()*10000); MYMAP.placeMarkers('<?php echo wpgmaps_get_marker_url($wpgmza_current_map_id); ?>?u='+UniqueCode,<?php echo $wpgmza_current_map_id; ?>,null,null,null); });Just below that, add this :
jQuery('body').on('click', '.vc_tta-tab', function() { MYMAP.init('#wpgmza_map', myLatLng, <?php echo $start_zoom; ?>); UniqueCode=Math.round(Math.random()*10000); MYMAP.placeMarkers('<?php echo wpgmaps_get_marker_url($wpgmza_current_map_id); ?>?u='+UniqueCode,<?php echo $wpgmza_current_map_id; ?>,null,null,null); });This should help. Please let me know?
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Map showing empty mapHi Joe.
Thank you for your kind words.
I visited your map and it seemed to have loaded without any issues on the initial page load. Which browser are you using when this occurs?
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Map not showingHi demitsin
Thanks for that. I see Nathan has responded and assisted you already 🙂
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Unable to update WP Google MapHi Gillian.
So sorry to hear this.
What sort of error are you getting? What version of the plugin are you currently using?
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] map not showing after updatesHi there.
So glad to hear everything is now working as intended 🙂
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] google maps crashingHi Naz.
We’ll have the update available, most likely in the week of the 4th of Jan 2016. It will be fixed before February for sure 🙂
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] map not showing after updatesHi there.
Please send me a link to your map so I can look into this for you?
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Map not showingHi demitsin
Please send me a link to your map so I can look into this for you?
Hi there.
Thank you for purchasing our plugin.
I’ve added this as a feature request to our development schedule to ensure we have this available in a future release (https://trello.com/b/Brsxoyzo)
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Add an additional Link to a PolygonHi there.
One link can be added to the marker by default, where the hyperlink will display something like ‘More Details’, however, the ‘Description’ field of the marker allows for HTML to be rendered, so adding something like
<a href='#'>My Link</a>will render properly in the description field.Does this help?