Empty the cart on logout in WooCommerce

Empty the cart on logout in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

function wc_empty_cart_logout() {
    if( function_exists('WC') ){
        WC()->cart->empty_cart();
    }
}
add_action('wp_logout', 'wc_empty_cart_logout');

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.