fbpx
Want To Add Extra Images Per Product Variation? Download This Free Plugin

Variation Swatches For WooCommerce

amanda whaley

Hi.

Order #167962

My annual subscription has just renewed. Do I need to do anything on the website as it does not seem to be showing the out of stock items correctly?

My website is Chaffree.com

https://www.chaffree.com/product/womens-knicker-boxers/

Thanks

Amanda

Screenshot 2025-04-28 113453.png

Golam Kibria

Hi Amanda,

Please add the following snippet to your child theme’s functions.php file:

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;
}

You can also add it using the Code Snippets plugin (If you don’t have a child theme).

Let me know if this helps resolve the issue.
Thank you