brianWP
Forum Replies Created
-
Same problem here, battling it right now. I have developer’s license so I’ll see if the gforms support team will offer assistance and add anything I discover here to help out.
Thanks for the reply, I saw your fix here and your response – that was me ?? https://www.soft79.nl/forums/topic/bug-in-version-2-3-0/
Thank you for the prompt reply. I was using 2.3.0 and that was causing the issue. I just reverted to a previous plugin version and got things working again. (this site has a lot of sales going on right now)
I’ll try your fix soon, thanks again for your help.
Forum: Plugins
In reply to: [ACF: Google Font Selector] Multisite compatible?Sorry, nevermind. Think it was an issue with the API Key
Forum: Plugins
In reply to: [ACF: Google Font Selector] Local Dev Work – How to Activate APIPerfect, that worked. Thanks very much!
Forum: Plugins
In reply to: [Plugin Advanced Custom Fields] Display Google map on your themeI missed that code you posted, worked perfectly, thanks!
I’m trying to add a list below the map so that links are clickable to open the bubble of the clicked location. Any idea how to get it working? Here’s my code
<div class="catlistingsmap"> <div id="map" style="width: 500px; height: 400px;"></div> <script type="text/javascript"> var locations = [<?php while( $wp_query->have_posts() ){ $wp_query->the_post(); $location = get_field('google_map'); ?> ['<?php the_title(); ?>', <?php echo $location['lat']; ?>, <?php echo $location['lng'];?>, <?php $NUM++ ?>], <?php } ?> ]; gmarkers = []; var map = new google.maps.Map(document.getElementById('map'), { zoom: 9, /*Here you change zoom for your map*/ center: new google.maps.LatLng(26.4336571, -81.9250167), /*Here you change center map first location*/ mapTypeId: google.maps.MapTypeId.ROADMAP }); var infowindow = new google.maps.InfoWindow(); var marker, i; for (i = 0; i < locations.length; i++) { marker = new google.maps.Marker({ position: new google.maps.LatLng(locations[i][1], locations[i][2]), map: map }); google.maps.event.addListener(marker, 'click', (function(marker, i) { return function() { infowindow.setContent(locations[i][0]); infowindow.open(map, marker); } })(marker, i)); } </script> <a href="javascript:google.maps.event.trigger(gmarkers['<?php the_title(); ?>'],'click');" class="button3"><?php the_title(); ?></a> </div>
Found this jsfiddle with clickable links, but the trigger isn’t working for me. https://jsfiddle.net/RASG/X5mhL/
UPDATE: Got it working , just had to move gmarkers[locations[i][0]] =
Thanks
Forum: Plugins
In reply to: [Plugin Advanced Custom Fields] Display Google map on your themeBonjour LeRedac ,
Do you know how to use this same method to show all icons/locations from each custom post on one google map?
For example, I have a custom post type “Listings”. Each listing post has a google map location added using advanced custom fields “Google Map” field. When viewing the listings page on the frontend showing all listings, I want a single Google Map to show locations from all listings.
Thanks in advance for having a look
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Dropbox errorsThanks Daniel! Seems to be working nicely now
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Dropbox – workJust updated , and see the new process for authenticating dropbox….however, all I see is “Not authenticated!” with a “Create Account” button below it…and then the code fields…
Where’s the “authenticate” button? I pasted in the Dropbox App Auth Code, and saved the page, but still says “not authenticated”.
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Dropbox errorsI get the Dropbox 401 error each time the scheduled job runs also. Possibly something to do with having two step authentication enabled?
Forum: Plugins
In reply to: [YITH WooCommerce Product Gallery & Image Zoom] Fails, is loadingYour site most likely has a more recent version of jQuery loading, and there’s currently a conflict with this plugin it seems. In the plugin folder, edit this file – /assets/js/yith_magnifier.min.js .
Change the two places it says b.browser to b.support and save the file. Hopefully the plugin author will release an update soon.
Your site most likely has a more recent version of jQuery loading, and there’s currently a conflict with this plugin it seems. In the plugin folder, edit this file – /assets/js/yith_magnifier.min.js .
Change the two places it says b.browser to b.support and save the file. Hopefully the plugin author will release an update soon.
Forum: Plugins
In reply to: [Store Locator for WordPress with Google Maps – LotsOfLocales] jQuery problemBy the way, the jquery error was just a “no defined function” on a js file I had custom function calls in….that are all valid and worked before activating your plugin.
Seems you need to call jquery differently or provide an option in the settings to move the javascript to the footer, or within in the body…and also allow people to set jquery no conflict mode on or off.
Forum: Plugins
In reply to: [Store Locator for WordPress with Google Maps – LotsOfLocales] jQuery problemThanks for reply. Ended up using https://www.ads-software.com/plugins/store-locator-le/ , no jquery conflicts etc.
Forum: Plugins
In reply to: [Store Locator for WordPress with Google Maps – LotsOfLocales] jQuery problemExperiencing same issue here. Breaks everything else on the page using jquery functions. Would be nice if the resource call to the js file was in the footer rather than the header also.