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

remove reset variations button on product page

remove reset variations button on product page? There is an option for archive but not product pages

Hakik Zaman

Hi Multiverse,

Thanks for getting back to us.

The reset is an option from WooCommerce.

You can try the following snippet using a plugin called Code Snippets:

add_action( 'woocommerce_reset_variations_link' , function(){
return false;
}, 15 );

You can also add it inside your current theme’s functions.php file.

Note: It is recommended to add the Custom Code to the child theme’s functions.php file, to avoid any data loss while updating the Parent Theme.

I hope this will resolve your issue. Hope to hear from you soon.

Thank You