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

rename clear button

Hey there, is there a simple solution to switch the word for clear. I have a german woocommerce shop and want to change the text for the clear button. Maybe with a code snippet, if it isnt core functionality.

 

Greetings

Benny

Hakik Zaman

Hi Benedikt,

Thanks for reaching out to us.

Unfortunately, it is not a feature of our plugin.

Still, you can try the following snippet inside your current theme’s functions.php file.

add_filter( 'woocommerce_reset_variations_link', function( $markup ){
return sprintf( '<a class="reset_variations" href="#">%s</a>', esc_html__( 'MY TEXT', 'woocommerce' ) );
}, 10, 1);

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.

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

Your rating keeps us inspired.

Thank You