Redirecting if logging in from the home page
-
I have a WordPress site setup with the WP-Members plugin. I have used the filter hook before but I want to change it a little so it redirects people to this page only if they log in from the homepage.
I think I am almost there but it is not working.. Here is what I have. Any help much appreciated.
p.s. great plugin thanks!
add_filter( 'wpmem_login_redirect', 'my_login_redirect' ); function my_login_redirect( $redirect_to, $user_id ) { if ( is_front_page() ) { return '/dashboard/'; } }
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Redirecting if logging in from the home page’ is closed to new replies.