通过下面的代码,可以隐藏特定类别的 WooCommerce 产品上的添加到购物车按钮。将下面的代码添加到主题的 functions.php 文件中。
add_action( 'woocommerce_single_product_summary', 'remove_add_cart_button' );
/**
* Remove add to cart button
*/
function remove_add_cart_button() {
// Categories
$categories = array( 'uncategorized' );
if ( has_term( $categories, 'product_cat', get_the_id() ) ) {
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
}
}
通过上面的代码,任何属于“uncategorized”产品类别的产品,都将被删除添加到购物车按钮。可以添加多个产品分类,不同分类以逗号分隔。
作者:牛奇网,本站文章均为辛苦原创,在此严正声明,本站内容严禁采集转载,面斥不雅请好自为之,本文网址:https://www.niuqi360.com/wordpress/remove-add-to-cart-button-on-woocommerce-products/