How to clear a Woocommerce cart

后端 未结 8 1681
-上瘾入骨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 10:08

    The updated version of this would be :

    WC()->cart->empty_cart();
    
    0 讨论(0)
  • 2020-12-17 10:08

    You can simply call this WooCommerce core functions:

    WC()->cart->empty_cart();
    

    To clear cart session:

    WC()->session->set('cart', array());
    

    Thanks

    0 讨论(0)
提交回复
热议问题