Remove product in the cart using ajax in woocommerce

后端 未结 3 908

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 09:53

    Try this one :

    foreach ( $woocommerce->cart->cart_contents as $cart_item_key => $cart_item ) {
    
     if($cart_item['product_id'] == $product_id){
    
      unset($cartdetails->cart_contents[$cart_item_key]);
    
     }
    }
    

提交回复
热议问题