Automatically Log-In User After Registration in gravity forms


Use below code in theme’s functions.php:

add_action(“gform_user_registered”, “autologin”, 10, 4);
function autologin($user_id, $config, $entry, $password) {
wp_set_auth_cookie($user_id, false, ”);
}

Form more info please find this link: http://www.gravityhelp.com/forums/tags/auto-login

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s