Advertisement
HarunRRayhan

Gravity Forms Auto login after registration successful

Jun 2nd, 2017
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. /**
  2.  * Gravity Forms Auto login after registration successful.
  3.  */
  4. add_action( 'gform_user_registered', 'hrx_bigshot_registration_autologin', 10, 4 );
  5. function hrx_bigshot_registration_autologin( $user_id, $user_config, $entry, $password ) {
  6.     $user = get_userdata( $user_id );
  7.     $user_login = $user->user_login;
  8.     $user_password = $password;
  9.  
  10.     wp_signon( array(
  11.         'user_login' => $user_login,
  12.         'user_password' =>  $user_password,
  13.         'remember' => false
  14.     ) );
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement