在WooCommerce中禁用添加到购物车按钮以获取产品ID数组

时间:2016-09-26 11:19:09

标签: php wordpress woocommerce cart product

在WooCommerce中,我尝试禁用“添加到购物车”按钮以获取一系列产品ID,但我无法找到问题。

我正在尝试使用此功能:

add_filter('woocommerce_is_purchasable', 'my_woocommerce_is_purchasable', 10, 2);

function my_woocommerce_is_purchasable($is_purchasable, $product) {
    $id=check(); // This function return an array of IDs
    foreach ($id as $id_p){
        return ($product->id = $id_p ? false : $is_purchasable);
    }
}

这是我的check()功能代码(更新)

function check() { 
    $listproduit = get_woocommerce_product_list();
    $score = get_score_user(); 
    foreach ($listproduit as $products) { 
        if ($products[1] >= 5000) { 
            $listid = $products[0]; 
            return $listid; 
            // print_r($listid); 
        } 
    } 
    return $listid; 
}

但这不起作用。

我做错了什么?

由于

2 个答案:

答案 0 :(得分:3)

您必须返回true或false并在您的条件中包含$ is_purchasable。

试试这段代码:

add_filter('woocommerce_is_purchasable', 'my_woocommerce_is_purchasable', 10, 2);
function my_woocommerce_is_purchasable($is_purchasable, $product) {
    $id = check();
    if(in_array($product->id, $id) && $is_purchasable) return false;
    else return true;
}

此代码位于活动子主题(或主题)的function.php文件中或任何插件文件中。

代码已经过测试并且功能齐全。

使用check()函数的代码进行更新。我无法测试,但我已经做了一些改变。

这是代码

function check() { 
    $listproduit = get_woocommerce_product_list();
    $listid = array();
    $score = get_score_user(); 
    foreach ($listproduit as $products) { 
        if ($products[1] >= 5000) { 
            $listid[] = $products[0];   
        } 
    } 
    // print_r($listid);
    return $listid; 
}

答案 1 :(得分:1)

我为此苦苦挣扎,但最终找到了答案。希望能帮到你:

add_action('woocommerce_single_product_summary', 
'wp66176371_remove_product_description_add_cart_button', 1 );
function wp66176371_remove_product_description_add_cart_button() {
global $product;
if(in_array($product->get_id(), array(414, 427))){
remove_action( 'woocommerce_single_product_summary', 
'woocommerce_template_single_add_to_cart', 30 );
}
}