WooCommerce不显示价格 不显示购物车按钮

Tik 1: 不显示价格 不显示价格,去掉价格字段即可 把代码放在主题的functions.php下 //Hide price add_filter( ‘woocommerce_get_price_html’, ‘woocommerce_hide_price’ ); function woocommerce_hide_price( $price ){ return ”; } Tik 2:去掉购买按钮 //Hide buy button add_action( ‘init’, ‘woocommerce_hide_buy_button’ ); function woocommerce_hide_buy_button(){ remove_action( ‘woocommerce_after_shop_loop_item’, ‘woocommerce_template_loop_add_to_cart’, 10 ); remove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_add_to_cart’, 30 ); } […]

WooCommerce不显示价格 不显示购物车按钮 Read More »