Skip to content Skip to sidebar Skip to footer

Eliminate Hide Or Remove "services" And "clear" From The Variation Drop Down In Woocommerce

W/o altering the template can we eliminate 'services' and 'clear' from the variation dropdown system. I have copy-pasted a template in a theme, and its modification was successful

Solution 1:

Remove variation reset "clear" button using below hook

add_filter( 'woocommerce_reset_variations_link', '__return_false' );

Remove attribute label using the hook below

add_filter( 'woocommerce_attribute_label', '__return_false' );

Post a Comment for "Eliminate Hide Or Remove "services" And "clear" From The Variation Drop Down In Woocommerce"