bmp
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Bulk Delete] Hosting Timeout during deleteThat sounds amazing. Thanks!
Forum: Plugins
In reply to: [Gravity Forms Mail Poet Add-on] Notice for GF_SIMPLE_FEED_ADDON_VERSIONAlso getting this same Notice…
Any ideas?
Forum: Plugins
In reply to: [Admin Post Navigation] WooCommerce Orders+1 on using this for WooCommerce Orders. It doesn’t seem to work for them. I also tried adding ‘shop_order’ explicitly via the filter and that didn’t work.
Forum: Plugins
In reply to: [Gravity Forms Repeater Add-On] Javascript error in gf-repeater.min.jsAwesome thanks Kodie!
Forum: Plugins
In reply to: [Gravity Forms Repeater Add-On] Javascript error in gf-repeater.min.jsLine 171
if (childInfo['required']) { childRequired = true; }
Forum: Plugins
In reply to: [Gravity Forms Repeater Add-On] Notice – Undefined Index "conditionalLogic"Hey Kodie seems to work great upon initial testing. Thanks!
Forum: Plugins
In reply to: [Gravity Forms Repeater Add-On] Compatibility with Gravity PDF plugin?I had this same issue, just curious what did you do to figure it out?
I used unserialize() and that seemed to work…
Forum: Plugins
In reply to: [Gravity Forms Repeater Add-On] Notice – Undefined Index "conditionalLogic"Sure thing, replaced both lines with the code above and am now getting:
Undefined variable repeatSkips on the lines where I replaced the code.
Edit* the lines below the code: 166 and 324
if (is_array($repeatSkips)) { if (in_array($i, $repeatSkips) || in_array('all', $repeatSkips)) { continue; } }
Thanks again for your help.
Forum: Plugins
In reply to: [Age Verify] Doesn't work with wpengineI ended up just creating some custom javascript using jQuery and jQuery cookie and it works fine.
Essentially I call a modal on every page load unless it can find a valid cookie which gets set when a visitor clicks on an “I am over 18” button.
Here it is in action if you would like to see it: https://vsgdemo1.wpengine.com/
<script type="text/javascript"> jQuery(document).ready(function($){ var modal = UIkit.modal("#age-verify", {keyboard:false, bgclose:false, center:true}); if ( $.cookie('age-verification') == 'yes' ) { modal.hide(); } else { modal.show(); $(".uk-modal-close").click(function() { $.cookie('age-verification', 'yes', { expires: 30, path: '/' }); }); } }); </script>
Forum: Plugins
In reply to: [Next Page, Not Next Post] Problems with getPagesQueryI also had the exact same problem and this solved it.
Thanks and agree there needs to be an official fix
Forum: Plugins
In reply to: [CSV Importer] Future Date – Draft of PublishedI’ve been testing this…
If you upload posts as drafts with a date in the future, it doesn’t schedule the post.
If you upload posts (not as drafts), it will schedule the post.This hasn’t been resolved yet and there is no word from the developer on this as of yet.
Forum: Plugins
In reply to: [Tweetable Text] [Plugin: Tweetable Text] Hello!Hey Salim, trying to use your plugin on wp 3.5 and unfortunately it’s not loading with the shortcode. Is this compatible with 3.5?