How to clear a Woocommerce cart

后端 未结 8 1698
-上瘾入骨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:58

    the above didnt worked for me so i needed something that dont relies on WordPress conditional:

    /*empty cart if user come to homepage*/
    add_action( 'init', 'woocommerce_clear_cart_url' );
    function woocommerce_clear_cart_url() {
    global $woocommerce;
    
    if ($_SERVER['REQUEST_URI'] === '/') { 
        $woocommerce->cart->empty_cart(); 
     }
    }
    

提交回复
热议问题