Hi,
I just noticed that the register form doesn’t work. It always says “the password is weak or very weak and the button “register is not active.
Please have a look. I appreciate.
isn’t there a checkbox “yes i know – and go on with weak password”
no, I don’t see this checkbox
what Register do you mean – that of a new user in wordpress?
Or do you have a plugin installed for that new users
Hey!
Please add following code to Functions.php file in Appearance > Editor
function avia_remove_password_strength() {
if ( wp_script_is( 'wc-password-strength-meter', 'enqueued' ) ) {
wp_dequeue_script( 'wc-password-strength-meter' );
}
}
add_action( 'wp_print_scripts', 'avia_remove_password_strength', 100 );
Regards,
Yigit
Thank you . it solved the problem. There is no password strength check now.