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');