问题
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, but I am looking for ways to get rid of this through some hook/function without altering any template whatsoever.
回答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' );
来源:https://stackoverflow.com/questions/58419477/eliminate-hide-or-remove-services-and-clear-from-the-variation-drop-down-in