Hi,
You setup the Minimum Password Length and Minimum Password Strength in Profile Builder -> General Settings and the default WordPress Registration Form (wp-login.php?action=register) is still asking for 7 characters and strong password? Or this happens on Profile Builder’s Registration form?
Best regards,
Thread Starter
marcbo
(@marcbo)
Hi,
Default WP Registration Form,
Kind Regards,
Marc
Hi,
I set the Minimum Password Length to 4 and Minimum Password Strength to Medium in PB -> General Settings. Then I went to wp-login.php -> Register and registered a test user. After inserting the username and email address I checked the email address for the notification.
I clicked on the reset password link displayed inside the notification to reset the password. I tried to set a password that had 3 characters and a weak strength and the following error notices were displayed:
ERROR: The password must have the minimum length of 4 characters
ERROR: The password must have a minimum strength of Medium
Did you tried this also?
Best regards,
Thread Starter
marcbo
(@marcbo)
Hi,
Cannot reproduce your procedure because I’ve got the following error :
“Your password reset link appears to be invalid. Please request a new link below.”
I’ve disabled cache engine and most of my plugins….. I’m using SSL.
Best Regards,
Marc
Thread Starter
marcbo
(@marcbo)
OK,
reset link was bad, I can reproduce your procedure, it is working.
However, on the registtration form (storefront + standard woocommerce form), the register buttons is still disabled until I reach the default password strenght.
Profile builder settings are overriden by WP.
Any idea to make this work ?
Regards,
Marc
Thread Starter
marcbo
(@marcbo)
Following filter is working fine :
/**
*Reduce the strength requirement on the woocommerce password.
*
* Strength Settings
* 3 = Strong (default)
* 2 = Medium
* 1 = Weak
* 0 = Very Weak / Anything
*/
function reduce_woocommerce_min_strength_requirement( $strength ) {
return 1;
}
add_filter( ‘woocommerce_min_password_strength’, ‘reduce_woocommerce_min_strength_requirement’ );
HTH,
Marc