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
Try this. I hope it will help you.
add_action( 'init', 'woocommerce_clear_cart_url' ); function woocommerce_clear_cart_url() { global $woocommerce; if (strpos($_SERVER['REQUEST_URI'], '/checkout') < 0 ) { $woocommerce->cart->empty_cart(); } }