fbpx
Want To Add Extra Images Per Product Variation For Free? Download Now

Not working on all items

simon browne

i’ve been loooking though my website and came accross an item but it is not showing any x’s even though a lot are out of stock. Thi is the 1st time I have seen this and all the others work ok. Not a big issue but wondered what the issue might be.

https://ukhaberdashery.com/shop/14-colour-elastic-2mm-round-5mm-flat-bungee-hat-stretch-cord-mask-buy-1-2-4-8m/

 

Also, what does the “clear swatches transients” do in the admin bar and when should I use it?

 

Thanks

 

Simon

Hakik Zaman

Hi simon,

Thanks for reaching out to us.

Please add the following snippet using a plugin called Code Snippets.

add_filter( 'woo_variation_swatches_global_ajax_variation_threshold_max', 'woo_variation_swatches_global_ajax_variation_threshold_max_edit', 10, 2 );
function woo_variation_swatches_global_ajax_variation_threshold_max_edit( $size, $product ){
return 700;
}

Note: You can also add the snippet inside your current theme’s functions.php. I recommend using Code Snippets or Child theme’s functions.php to avoid the loss of modification while updating the parent theme.

Then try again and let me know how it goes.

Hope to hear from you soon.

Thank You