当前位置:  开发笔记 > 编程语言 > 正文

删除Woocommerce中针对特定产品类别的添加购物车按钮

如何解决《删除Woocommerce中针对特定产品类别的添加购物车按钮》经验,为你挑选了1个好方法。

我有一个问题如何从类别产品中删除购物车.如果我将它应用于特定的id或一般的所有内容,它的工作正常,但我无法为类别执行此操作.以下是我对此所做的代码.

此外,我正在努力将相同的模式应用于相关文章部分,所以任何帮助将不胜感激.

谢谢.

//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');

}

LoicTheAztec.. 6

要使其适用于产品类别,您可以使用WordPress条件函数has_term():

//function for deleting ....
function remove_product_description_add_cart_button(){
    global $product;

    // Set HERE your category ID, slug or name (or an array)
    $category = 'categoryslug';

    //Remove Add to Cart button from product description of product with id 1234    
    if ( has_term( $category, 'product_cat', $product->id ) )
        remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );

}
add_action('wp','remove_product_description_add_cart_button');

代码位于活动子主题(或主题)的function.php文件中.或者也可以在任何插件php文件中.



1> LoicTheAztec..:

要使其适用于产品类别,您可以使用WordPress条件函数has_term():

//function for deleting ....
function remove_product_description_add_cart_button(){
    global $product;

    // Set HERE your category ID, slug or name (or an array)
    $category = 'categoryslug';

    //Remove Add to Cart button from product description of product with id 1234    
    if ( has_term( $category, 'product_cat', $product->id ) )
        remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );

}
add_action('wp','remove_product_description_add_cart_button');

代码位于活动子主题(或主题)的function.php文件中.或者也可以在任何插件php文件中.

推荐阅读
Gbom2402851125
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有