I am wondering how you can clear the contents of your cart on page load using woocommerce.
I came accross how to add a clear cart button using by adding this in to f
The updated version of this would be :
WC()->cart->empty_cart();
You can simply call this WooCommerce core functions:
To clear cart session:
WC()->session->set('cart', array());
Thanks