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

Out of stock with cross

Davide Bonetti

Hi I have this strange problem. I have a product with 100 variations the “out of stock with cross” works fine. When I add another variation 101, 102 etc. “the out of stock with cross” no longer appears. (See attached picture). Can you help me? Thanks a lot.

 

Schermata 2023-06-14 alle 21.53.32.png

Golam Kibria

Hi Davide,

Please try adding 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;
}
Let me know if this helps.

Thank You