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

Variations that do not exist are displayed

Vera Geier

Hello,

we bought the Pro version of the “Variation Swatches for WooCommerce” but it doesn’t work as intended.
If I select one attribute it should hide or cross the variations which don’t exist. But it always shows all variations. I configured in Swatches Settings -> Advanced -> Disabled Attribute style -> hide.

Thanks a lot.
Kind regards,
Vera

Golam Kibria

Hi Vera,

We are sorry for the inconvenience.

Does it happen for all products or specific products?

Will you please share a product link here with the issue?

Hope to hear from you soon.

Thank You

Golam Kibria

Hi Vera,

Please add the following snippet to your site using the Code Snippets plugin.

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

Your products have lots of variations, the snippet will add support for them.

We could not add the snippet as our permissions are limited.

Let me know if this helps resolve the issue.

Thank You

Vera Geier

Hi Golam,

Thank you for your answer. Unfortunately it still doesn’t work.

But I found a snippet that works 🙂

function custom_wc_ajax_variation_threshold( $qty, $product ) {
return 1000;
}
add_filter( ‘woocommerce_ajax_variation_threshold’, ‘custom_wc_ajax_variation_threshold’, 10, 2 );
 

Thank you for your Support.

 

Kind regards,

Vera

Golam Kibria

Hi Vera,

Sorry that it did not work for you straight away. If you increased the number to 1000, it would have worked.

(That is why I was asking for a product link).

Anyway, I am glad that you were able to fix the issue.

We get excited & honored when you use our plugin on your site.

If you found my support helpful, could you leave your valuable review here: https://wordpress.org/support/plugin/woo-variation-swatches/reviews/?filter=5

Your rating keeps us inspired.

Is there anything else we can do for you?

Thank You