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

Disable variations swatches on single product page

Hi,

Is it possible to disable the variations swatches on the singe products pages only? We only want to use the variations swatches on the shop/category pages, not on the single product page.

Golam Kibria

Hi Benjamin,

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

add_filter('default_woo_variation_swatches_single_product_dropdown_html', function($default){
return true;
}, 10, 1);

If you don’t have a child theme, you can try the Code Snippets plugin.

I will wait for your feedback.

Thank You