Password Strength Estimator
Overview
The password strength estimator plugin is based on this GitHub repository: https://github.com/dropbox/zxcvbn from “zxcvbn.” The plugin will determine and indicate the strength of the password. Once you have installed and activated the plugin, it will automatically appear in the Register Form password field, in the new password field in the Account > change password tab, and in the Reset Password. You can read the plugin installation guide here.
3 Password Strength Indications
Three indications will appear under the password field:
1. Score: Worst, Bad, Weak, Good, and Strong
add_filter("um_pass_strength_show_score","__return_false");
2. Warning: There will be different warnings that will appear, and it depends on the weakness of the password.
To disable this and hide the indication, you can use the code below:add_filter("um_pass_strength_show_warning","__return_false");
3. Suggestions: There will be different suggestions that will appear, and it depends on the input.
To disable this and hide the indication, you can use the code below:add_filter("um_pass_strength_show_suggestions","__return_false");
Note: The suggestions and warnings that will appear will depend on the complexity & weakness of the password a user inputs.
Password Strength Estimator in Register Form
Password Strength in Account > change password tab.
Password Strength Estimator in Reset Password