Clear cart in woocommerce, how can we empty cart in woocommerce wordpress?

To remove all cart products

Include below code in the cart.php:

1
<input type="submit" onclick="javascript:if(!confirm("Are you sure want to Clear All Items?")) {return false;}" class="button" name="clear-cart" value="<?php _e('Clear Cart', 'woocommerce'); ?>">

We can easily remove whole cart product by adding above code.

No comments:

Post a Comment