Forum Replies Created

Viewing 3 Topics - 1 through 3 (of 3 total)
Author Posts
May 24, 2014 at 1:20 pm in reply to: Bug -> Password didn't match 20924
paul paul

Ah, sorry Tareq, I was unaware as the module did not notify of an update. Therefore I have downloaded and installed the new version and can confirm everything works as expected.

Thanks.

May 24, 2014 at 2:47 am in reply to: Bug -> Password didn't match 20907
paul paul

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.

May 24, 2014 at 12:03 am in reply to: Bug -> Password didn't match 20892
paul paul

Hi,

As Ilya first pointed out, the password strength indicator does not work when typing the first password. Only when you start to type the 2nd password it then activates the matching process.

Chrome Console flags the error as “Uncaught ReferenceError: zxcvbn is not defined”

Is this an error with the default password plugin or is it something to do with your plugin?

Viewing 3 Topics - 1 through 3 (of 3 total)