Hello!
I try to add this snipet to redirect user to their panel instead of retrun to shop.
function wc_empty_cart_redirect_url() {
return ‘https://mywebsite/thepage/’;
}
add_filter( ‘woocommerce_return_to_shop_redirect’, ‘wc_empty_cart_redirect_url’ );
But, that dont work.
Anysuggestion?