WPGMaps
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Map isn't workingHi
Do you still require help? I see there is now a working map on the page.Forum: Reviews
In reply to: [WP Go Maps (formerly WP Google Maps)] If I could give no stars I wouldWe did not fix anything along those lines today.
It sounds like there could be a conflict that is preventing our plugin from adding a marker. I’m sorry you see experiencing issues. I will be more than happy to assist if you like?
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] media library not loadingHi there
Which version of WordPress and my plugin are you using?Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Maps not working with tabsHi Omar
We need to add a small piece of code to make the map work in tabs.In wpgooglemaps.php look for this section:
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 and modify it to suit your tab classes
jQuery('body').on('click', '.CLASS_NAME OF TAB', 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); });Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Allow visitors to place markersPlease review this: http://www.wpgmaps.com/visitor-generated-markers-add-on/
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] No Google Maps Autocomplete?Not just yet Thomas. We are still getting there. sorry about that
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Info Window not workingHi there
It seems that your theme or another plugin is loading the Google Maps API over and above my plugin’s call to the API which results in the issue you are facing. Please try find the call to the API and remove it. That will fix your issue.Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] map with filterHi
With the lite version you can create a map with as many markers as you like. At the moment, the filtering is only available in the pro version but we may bring it to the free version in the near future.Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] No Pro Support?I will answer your question in the pro forum.
Forum: Reviews
In reply to: [WP Go Maps (formerly WP Google Maps)] If I could give no stars I wouldOur plugin does not “jump” and throw offers to purchase. Please make sure you have put this review in the correct area. Our plugin is called “WP Google Maps” and there is another plugin called “WP Google Map Plugin”
Forum: Reviews
In reply to: [WP Go Maps (formerly WP Google Maps)] If I could give no stars I wouldHi
Are you sure you are using our plugin and not WP Google Map Plugin??Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Simple shortcode includeThank you for that suggestion – we will definitely look into adding this soon.
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] link to markerHi there
Sorry not sure how I missed this.We’ll be building this in within the next few weeks – it is already on the development radar 🙂
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Jams when draggingHi there
Sorry for the delay in response.
I suspect that either your theme or another plugin is using the mouse drag event in JavaScript which is causing an issue. Please try the following:1) Change themes to the standard wordpress theme and see if this fixes it
2) Disable each plugin one by one to see which may be causing the issueLet me know if any of that helps and we can further identify what the issue is.