普通网友 2016-09-26 11:19
浏览 49
已采纳

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

In WooCommerce, I'm trying to disable add to cart button for an array of product IDs but I can't find the problem.

I am trying to use this function:

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);
    }
}

And this is my check() function code (update):

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; 
}

But this doesn't work.

What am I doing wrong?

Thanks

  • 写回答

1条回答 默认 最新

  • dq1230123 2016-09-26 11:47
    关注

    You have to return true or false and to include $is_purchasable in your condition.

    Try this code:

    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;
    }
    

    This code goes in function.php file of your active child theme (or theme) or also in any plugin file.

    The code is tested and fully functional.


    Update with the code of your check() function. I can't test this, but I have made some changes in it.

    Here is the code

    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; 
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 fesafe材料库问题
  • ¥35 beats蓝牙耳机怎么查看日志
  • ¥15 Fluent齿轮搅油
  • ¥15 八爪鱼爬数据为什么自己停了
  • ¥15 交替优化波束形成和ris反射角使保密速率最大化
  • ¥15 树莓派与pix飞控通信
  • ¥15 自动转发微信群信息到另外一个微信群
  • ¥15 outlook无法配置成功
  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统