Remove product in the cart using ajax in woocommerce

后端 未结 3 917

I would like to remove the product in the woocommerce cart using ajax without click the link.

If you have encounter this kind of functionality, please help us.

3条回答
  •  滥情空心
    2020-12-29 10:05

    use this :

    $cart = $woocommerce->cart;
    
    foreach ($woocommerce->cart->get_cart() as $cart_item_key => $cart_item){
        if($cart_item['product_id'] == $_POST['product_id'] ){
            // Remove product in the cart using  cart_item_key.
            $cart->remove_cart_item($cart_item_key);
        }
    }
    

提交回复
热议问题