How to clear a Woocommerce cart

后端 未结 8 1685
-上瘾入骨i
-上瘾入骨i 2020-12-17 09:45

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

8条回答
  •  借酒劲吻你
    2020-12-17 09:51

    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();
      }
    }
    

提交回复
热议问题