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
10 changes: 5 additions & 5 deletions includes/class-forms.php
Original file line number Diff line number Diff line change
Expand Up @@ -4876,11 +4876,11 @@ function (event) {
var $form = $(this).closest('form');
if( ! $form.hasClass('uwp-login-form') ) {
uwp_checkPasswordStrength(
$('input[name=password]', $form), // First password field
$('input[name=confirm_password]', $form), // Second password field
$('#uwp-password-strength', $form), // Strength meter
$('input[type=submit]', $form), // Submit button
['black', 'listed', 'word'] // Blacklisted words
$form.find('input[name=password]'),
$form.find('input[name=confirm_password]'),
$form.find('#uwp-password-strength'),
$form.find('button[type="submit"], input[type="submit"]'),
['black', 'listed', 'word']
);
}
}
Expand Down
10 changes: 5 additions & 5 deletions includes/template-functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,11 @@ function( event ) {
var $form = $(this).closest('form');
if( ! $form.hasClass('uwp-login-form') ) {
uwp_checkPasswordStrength(
$('input[name=password]', $form), // First password field
$('input[name=confirm_password]', $form), // Second password field
$('#uwp-password-strength', $form), // Strength meter
$('input[type=submit]', $form), // Submit button
['black', 'listed', 'word'] // Blacklisted words
$form.find('input[name=password]'),
$form.find('input[name=confirm_password]'),
$form.find('#uwp-password-strength'),
$form.find('button[type="submit"], input[type="submit"]'),
['black', 'listed', 'word']
);
}
}
Expand Down
1 change: 1 addition & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ Yes, you can customize it with Elementor, but also with Gutenberg, Divi, Beaver

= 1.2.53 - TBD =
* Prevent duplicate event handlers in registration form switcher causing multiple AJAX requests - FIXED
* Password strength doesn't enable/disable register button based on Minimum password strength setting - FIXED

= 1.2.52 - 2025-12-18 =
* Fixed issue with the profile url page not working if child page - FIXED
Expand Down