Skip to content

Instantly share code, notes, and snippets.

@aimahdi
Created December 4, 2021 15:27
Show Gist options
  • Save aimahdi/df684de845f89c58ac4ce14c28c50eb0 to your computer and use it in GitHub Desktop.
Save aimahdi/df684de845f89c58ac4ce14c28c50eb0 to your computer and use it in GitHub Desktop.
add_action('fluentform_before_insert_submission', function ($insertData, $data, $form) {
if($form->id != 180) { // 180 is your form id. Change the 23 with your own login for ID
return;
}
$redirectUrl = home_url().'/library/shelves/'; // You can change the redirect url after successful login
if (get_current_user_id()) { // user already registered
wp_send_json_success([
'result' => [
'redirectUrl' => $redirectUrl,
'message' => 'Your are already logged in. Redirecting now...'
]
]);
}
$email = \FluentForm\Framework\Helpers\ArrayHelper::get($data, 'email'); // your form should have email field
$password = \FluentForm\Framework\Helpers\ArrayHelper::get($data, 'password'); // your form should have password field
if(!$email || !$password) {
wp_send_json_error([
'errors' => 'Please provide email and password'
], 423);
}
$user = get_user_by_email($email);
if($user && wp_check_password($password, $user->user_pass, $user->ID)) {
wp_clear_auth_cookie();
wp_set_current_user($user->ID);
wp_set_auth_cookie($user->ID);
/* user is not logged in.
* If you use wp_send_json_success the the submission will not be recorded
* If you remove the wp_send_json_success then it will record the data in fluentform
* in that case you should redirect the user on form submission settings
*/
/*
if ( in_array( 'administrator', (array) $user->roles ) ) {
//The user has the "author" role
$redirectUrl = home_url().'/wp-admin';
}else if ( in_array( 'subscriber', (array) $user->roles ) ) {
//The user has the "author" role
$redirectUrl = home_url().'/page-1/';
}else{
$redirectUrl = home_url().'/page-2/';
}
*/
wp_send_json_success([
'result' => [
'redirectUrl' => $redirectUrl,
'message' => 'Your are logged in, Please wait while you are redirecting'
]
]);
} else {
// password or user don't match
/*
wp_send_json_error([
'message' => __('Email / password is not correct', 'fluentforms')
], 423);
*/
wp_send_json_error('Email / password is not correct');
}
}, 10, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment