Hi,
Not sure if you are still looking for an answer to this, or maybe it will help someone else in the future. But I was having the same problem and got the indicator to work by doing the following
Ok it turns out the issue is that the password strength plugin (which is a default wordpress plugin and not WPUF’s) is not calling a required js file when used with WPUF
I managed to get it to work by adding the following to the “wp-content/plugins/wp-user-frontend-pro/wpuf-functions.php” file
/**
* Enqueue script for password strength meter
*/
function password_score_script() {
wp_enqueue_script( ‘zxcvbn-async’, ‘/wp-includes/js/zxcvbn-async$suffix.js’, array(), ’1.0.0′, true );
}
add_action( ‘wp_enqueue_scripts’, ‘password_score_script’ );
Add the above to the end of the functions file and it should then work as expected.