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

Disabled Attribute style

Disabled Attribute style not working not showing x or hiding attribute when there is no stock

Golam Kibria

Hi Yosniel,

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

Let me know if this helps resolve the issue.

Thank You