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' );