WooCommerce:当购物车中已有物品时,更改“添加到购物车”按钮的颜色
当购物车中已有物品时,我要更改"添加到购物车"按钮的颜色。
我认为,当一个产品已经在购物车中时,有可能获得一个新的"添加"类或其他东西。
谁能帮我解决这个问题,并且知道如何实现这个目标?
解决方案
试试
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.
}
相关文章