Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assets/js/users-wp.js
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ function uwp_modal_login_form_process(){
}

}else if(data.success===false){
jQuery('.uwp-auth-modal .modal-content .modal-error').html(data.data.message);
jQuery('.uwp-auth-modal .modal-content .modal-error').html(data.data);
jQuery('.uwp-auth-modal .modal-content .uwp_login_submit').html($button_text).prop('disabled', false);// enable submit
uwp_maybe_reset_recaptcha();
}
Expand Down
2 changes: 1 addition & 1 deletion assets/js/users-wp.min.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion includes/class-templates.php
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,8 @@ public function profile_redirect() {
wp_safe_redirect( $profile_url );
exit();
} else {
$redirect_to = apply_filters( 'uwp_no_login_profile_redirect', home_url( '/' ) );
$redirect_to = apply_filters( 'uwp_no_login_profile_redirect', uwp_get_page_link('login') );
$redirect_to = add_query_arg('redirect_to', urlencode(get_permalink($profile_page)), $redirect_to);
wp_safe_redirect( $redirect_to );
exit();
}
Expand Down
1 change: 1 addition & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ Yes, you can customize it with Elementor, but also with Gutenberg, Divi, Beaver
= 1.2.54 - 2026-01-TBD =
* Max entries per csv file option in Import/Export setting not showing options - FIXED
* Check nonce while profile image and cover image crop - FIXED/SECURITY
* Redirect profile page to login instead of home page if accessed without login - FIXED

= 1.2.53 - 2026-01-08 =
* Prevent duplicate event handlers in registration form switcher causing multiple AJAX requests - FIXED
Expand Down