Mika MAtikainen
Apr 15, 2020 · 4 min read
How to Redirect User After Login in Woocommerce?
add_filter('woocommerce_login_redirect', 'wpsc_woo_login_redirect');
function wpsc_woo_login_redirect( $redirect_to )
{
return 'http://your-url.here'; // URL to redirect your customer after login
}