delete cart | prestashop
delete all item from cart and also cart
$cart = $this->context->cart;
$cart->delete();
$this->context->cookie->id_cart = 0;
delete item from cart
$products = $this->context->cart->getProducts();
foreach ($products as $product) {
$this->context->cart->deleteProduct($product['id_product'], $product['id_product_attribute'], $product['id_customization'], $product['id_address_delivery']);
} //foreach
Comments
Post a Comment