Hi,
Thank you for using our plugin. I did not completely understood your issue. Do you want users to be logged in right after filling and submitting the form?
Thread Starter
y_iff
(@y_iff)
Yes exactly that, i found another way to do it but would be good if the plugin gives that option. Thanks
function wp_auto_login_new_user( $user_id ) {
wp_set_current_user( $user_id );
wp_set_auth_cookie( $user_id, false, is_ssl() );
}
add_action( 'user_register', 'wp_auto_login_new_user' );
That’s great!
Right now we have our plates full with next two version getting ready with major new features. Will definitely consider auto-login in subsequent release.
Thanks again for using our plugin.
Cheers!
Hi, was already able to make registration form with new user account and password fields. Now please someone help me figure out where or how to create a login page for this for the registrants to access their account using the username (email address) and password they have registered.
Thanks!
Hi, was already able to make registration form with new user account and password fields. Now please someone help me figure out where or how to create a login page for this for the registrants to access their account using the username (email address) and password they have registered.
Thanks!
Once you create a registration form and someone registers how do they log in and log out?