casbboy
Forum Replies Created
-
Forum: Plugins
In reply to: [Better Font Awesome] \’ready\’ event is deprecatedalso getting the same error.
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Keep Out of Stock Variation EnabledIs this feature now available? Considering switching to this plugin.
Forum: Plugins
In reply to: [Facebook for WooCommerce] Messenger Breaks Entire SiteNo update on this yet? Seems like a critical bug.
Forum: Plugins
In reply to: [Facebook for WooCommerce] Issue After UpdatingI have the exact same issue. Had to disable messenger as well.
Please fix this asap.
Forum: Plugins
In reply to: [Facebook for WooCommerce] Messenger Breaks Entire SiteI ended up having to disabled the Messenger from inside the plugin. Now all pages are scrolling again.
The breaking of my website is entirely the fault of the Messenger built into this plugin. Wish there was a way to hide or not launch the Messenger portion of the plugin until a custom onclick is done through jquery.
Forum: Plugins
In reply to: [Facebook for WooCommerce] Disable Messenger on Cart / Checkout PagesWhile the CSS works on desktop, I can’t get it to work on mobile devices. THe lower bar still appears no matter what.
Forum: Plugins
In reply to: [PW WooCommerce Gift Cards] Multiple Gift Card Designs for Customer to Pick?Just so you can see a sample of what I mean:
https://plugins.yithemes.com/yith-woocommerce-gift-card-free/product/virtual-gift-card/
Forum: Plugins
In reply to: [C4D Woo Variation Images] No support, no answerdid you ever get a response?
Forum: Plugins
In reply to: [Facebook for WooCommerce] Disable Messenger on Cart / Checkout PagesFor some reason I never got the email response on this. I will try that, thank you.
Hi @jenskyverge – it turns out that I’m an idiot, and I never realized there was a “Facebook Description” meta field below every variation. I was able to get dialed in using that, as that was all I needed. 🙂
However, I do need to do another post with a new question…..
Cheers!
RyanMy fault. I didn’t realize Klaviyo doesn’t instantly added the new information from the form to the list, so made it look like wasn’t working.
It is working.
Forum: Plugins
In reply to: [Product Feed PRO for WooCommerce] Custom Add Text in Value ColumnYou are awesome! Thank you.
Forum: Plugins
In reply to: [Product Feed PRO for WooCommerce] Not ValidatingI need to create a Google Product Feed, but can’t figure out the difference.
I was looking ath their guide:
https://support.google.com/merchants/answer/160588
And just noticed they don’t have the “g:” in front of anything in their example.
- This reply was modified 8 months, 2 weeks ago by casbboy.
Forum: Plugins
In reply to: [W3 Total Cache] Last-Modified Header and Expires Header WrongI should point out that my server is NGINX. I tried including path to the nginx.conf made by w3 in my nginx config file, but then I got 404 errors on all the post pages.
Forum: Plugins
In reply to: [C4D Woo Variation Images] Don’t Show Variation Option if Only One?Hello!
Your recent plugin update actually undid my fixes to hide variations with only one option.
We had old products with a particular color that we don’t carry any more, so we don’t want to delete the entire variation for book keeping (like COGS). We have one color that is disabled, no check mark for Enabled, but the plugin still has it show why Woocommerce knows not to show it.
How can the plugin know not to show any variation without stock, disabled or an attribute with only a single variation?
The last update removed your “outstock” and “.not-match” class, which was the perfect way to choose what to hide or not.
I have CSS hide all variations, and then jquery shows the variations that have more than one.
jQuery(".variations_form").on('DOMSubtreeModified', function() { clearTimeout(timer1); //jQuery(".variations_form").on('DOMNodeInserted', function() { var parents = document.querySelectorAll('.c4d-woo-vs-single-list-box'); var timer1 = setTimeout(function () { for(var i = 0; i < parents.length; i++) { var children = parents[i].querySelectorAll('.attribute-item:not(.not-match)'); var childlength = children.length; console.log('children: '+childlength); /*if (children.length < 2) { parents[i].style.display = 'none'; //jQuery(".variations_form").off('DOMSubtreeModified'); }*/ if (children.length > 1) { parents[i].style.display = 'block'; //jQuery(".variations_form").off('DOMSubtreeModified'); } } }, 1500);
Cheers!
Ryan*for now I’m trying to roll back to an older version of the plugin.