ctuxboy
Forum Replies Created
-
Forum: Plugins
In reply to: [LiteSpeed Cache] Some items does change on the pagesHi Tishu,
Thanks for the fast answer.
I read thΓ© blog, but doesn’t work.
It gives me a lot of troubles.
Do a lot of this, such as re-save permalinks and so on. I know there are cache options for WC in the plugin, trying a lot of options without luck πHi Tom,
That’s awesome.
Thanks for the fast reply.Christophe
Hi Tom,
Your answer making all good π
Okay, i see that you find the ticket.
Thanks a lot for the replay.PS: I wish you the best for 2018!
Regards,
ChristopheOh ok, thank you very mutch Tom!!!
First i was dissapointed about the long waiting, but you making it good.
Very happy π(Sorry for my poor english)
Hi @algoritmika,
Thanks for the very fast answer π
It is solved!!!
What i did:
Follow your advice and resave the permalinks, so i don’t know what the issue solved, but i worked now!
Thank you very mutch πPS: i have the payed booster plus (developer licence). It’s an awesome plugin!!!
Hi @embmus,
I have the same problem.
Have some small issues/questions, mail to support@booster.io, after no answer about more then a week, add a comment on the booster.io website but with no luck πPaying for premium version (developer lisence) but no support π
I like the plugin with all the settings, but with no support, the premium version gives the plugin a bad quality.
Very disappointed!
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Cron jobOkay. Thanks for the fast answer.
I’m looking in the next days tot this extensions.Good to know π
Forum: Plugins
In reply to: [WooCommerce] Hide out of stock variations when filteringHi @williamm095,
Thanks for report this.
I tested on Storefront-theme, but at this moment there is no issue on my test webshop.
I used the latest WC version 3.2.3See screenshot
(UITVERKOCHT = SOLD OUT)Next week i have a meeting with my client if she has issues with the variation ‘SOLD OUT’ filter on her webshop.
Forum: Plugins
In reply to: [WooCommerce] Hide out of stock variations when filteringHi @williamm095,…
I made a more simplified/basic snippet for filtering variable products.
When a variation is sold out it shows ‘NIET OP VOORRAAD’ (= OUT OF STOCK).
Here you can see a demo on youtube:
Here a link where you can found the snippet.
Hope this can help others with the same problem.
Christophe
Forum: Plugins
In reply to: [WooCommerce] Hide out of stock variations when filteringHi,
I found that pa_ a default prefix based on the WC Core.
i setting up a test shop and try the code, with no luck πForum: Plugins
In reply to: [WooCommerce] Hide out of stock variations when filteringI try it, but for the moment doenst work: broken my layout!
Another question: i see sometimes the prefix pa_ :
get_terms( sanitize_title( 'pa_schoenmaat' ));if($instockitem["attributes"]["attribute_pa_schoenmaat"]Maybe i want change this? Or is this prefix WC core?
- This reply was modified 9 years ago by ctuxboy.
Forum: Plugins
In reply to: [WooCommerce] Hide out of stock variations when filteringForum: Plugins
In reply to: [WooCommerce] Hide out of stock variations when filteringHi @williamm095,
I have the same issue.
I will try your code, but have a lot of problems with your double/single quotes.
Is it possible adding your code on github or another place so it is better for copy/testing without problems.Hope this works π
- This reply was modified 9 years ago by ctuxboy.
Forum: Plugins
In reply to: [WC Hide Shipping Methods] More than one free shipping methodHi Yaniv,
Oh, ok happy that i can help you with this snippet.
Sorry for the typo ‘//’, this is indeed a serious error.
Thank you for the remark.Christophe
Forum: Plugins
In reply to: [WC Hide Shipping Methods] More than one free shipping methodHi @clooney,
I found a solution.
What i did is a revert solution. I mean, hide ONLY the FLAT RATE shipping method and SHOW ALL other SHIPPING METHODS when FREE SHIPPING is available.
Paste this code in ‘functions.php’:add_filter( 'woocommerce_package_rates', 'wk_unset_shipping_when_free_is_available_in_zone', 10, 2 ); function wk_unset_shipping_when_free_is_available_in_zone( $rates, $package ) { // Only unset FLAT RATE if FREE SHIPPING is available if ( isset( $rates['free_shipping:2'] ) ) { FREE SHIPPING ID is 2 unset( $rates['flat_rate:1'] ); // FLAT RATE shipping method with ID 1 } return $rates; }PS: you want change only the ID’s for your WooCommerce shop. You can find the id’s in the css.
And deactivate/remove the ‘WC hide shipping methods’-plugin
Hope this help you!
- This reply was modified 9 years, 1 month ago by ctuxboy.