can’t redirect user “customer” after login
-
I’m trying to redirect all users that log in into the page but it still redirects me to “my-account” and I don’t want that.
Here is the code:add_filter( 'woocommerce_login_redirect', 'icey_coop_redirect_customer', 9999, 2 ); function icey_coop_redirect_customer( $redirect, $user ) { if ( wc_user_has_role( $user, 'customer' ) ) { $redirect_to = get_permalink(733); } return $redirect; }
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘can’t redirect user “customer” after login’ is closed to new replies.