Loading...

Syed Abdul

Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in reply to: auto login #10003503
    Syed Abdul
    Participant

    This 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.

    in reply to: auto login #10003497
    Syed Abdul
    Participant

    Can 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

Viewing 2 posts - 1 through 2 (of 2 total)