Eliminate Hide or Remove “Services” and “Clear” from the Variation Drop Down in Woocommerce

人盡茶涼 提交于 2019-12-11 19:13:26

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!