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