brianWP
Forum Replies Created
-
Forum: Plugins
In reply to: [User Role Editor] Compatible with Domain Mapping?Never mind, found your response here and worked perfectly https://www.role-editor.com/forums/topic/cant-edit-roles-via-subsite/#post-1879
Thanks
With the help of the support team at Gravity Forms, I was led to see that in the database , the postmeta (the table that these images are stored in) values are being stored differently.
When a post is created using the post editor and custom field upload image, the image is stored a wp_attached_file, and then the custom field name is stored as another record that calls the wp_attached_file ID.
When a post is created using a gravity forms form, the image upload field (mapped to an ACF custom field) is simply stored in postmeta as a file URL value.
I don’t have a solution to fix this, but I ended up using the “Post Image” field in gforms and set it as a “featured image” for the post to achieve what I wanted. Hope that helps
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 🙂 http://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. http://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 Plugin] Dropbox errorsThanks Daniel! Seems to be working nicely now
Forum: Plugins
In reply to: [BackWPup - WordPress Backup 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 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 Zoom Magnifier] 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.
Forum: Plugins
In reply to: [YITH WooCommerce Zoom Magnifier] yith woocommerce Magnifier not 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.
By 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.