我遇到了如何從類別產品中刪除購物車的問題。如果我將它應用於特定的ID或一般情況下,它就可以工作,但我無法爲某個類別做到這一點。以下是我已經完成的代碼。刪除Woocommerce中針對特定產品類別的添加購物車按鈕
此外,我正在努力將相同的模式應用到相關文章部分,所以任何幫助,將不勝感激。
謝謝。
//function for deleting ....
function remove_product_description_add_cart_button(){
global $product;
//Remove Add to Cart button from product description of product with id 1234
if ($product->id == 188){
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30);
}
add_action('wp','remove_product_description_add_cart_button');
}