Forum Replies Created
- AuthorPosts
Syed AbdulParticipantThis is my site http://www.advanced-minds.com/ when you click on get started its go to the Registration Page. When register it go to the Congratulation page but it still not login automatically. When you click on the Get Started button it goes to the video page but it still need to login then goto the video page. Video page is actually private page.
Syed AbdulParticipantCan anyone help me. I am trying to make auto login after registration. I put this code to theme function.php
function auto_login_new_user( $user_id ) {
wp_set_current_user($user_id);
wp_set_auth_cookie($user_id);
// wp_safe_redirect( home_url() ); OR…
wp_safe_redirect( home_url(‘/joinus/’) );
}
add_action( ‘user_register’, ‘auto_login_new_user’ , 10, 1);but it is not working. Please help me for the correct & tested code. Thanks
- AuthorPosts
