我想改变"添加到购物车的颜色"当购物车中已有物品时按钮 我认为,当产品已经在购物车中以获得新课程时,有可能添加"添加"或其他什么。
任何人都可以帮助我并知道如何实现这一目标吗?
答案 0 :(得分:0)
试试这个
function woo_in_cart($product_id) {
global $woocommerce;
foreach($woocommerce->cart->get_cart() as $key => $val ) {
$_product = $val['data'];
if($product_id == $_product->id ) {
return true;
}
}
return false;
}
要使用它只是在一个函数中传递产品ID,如果该项目已经在购物车中,它将返回true,如果项目不在购物车中则返回false ..
假设产品ID为“123”..
if(woo_in_cart(123)) {
// Product is already in cart
// add a custom class to cart button.
}