Hi Micheal, I don't have an answer for you but have the same question. I set up a password reset form using the shortcode FF provides: [frm-reset-password]. FF allows you to "Require a strong password" for a password field in your registration form which they define as 8 characters, upper case, lower case, number and a symbol. However, the page generated by the password reset shortcode says something different about the password and it is not clear what the requirements are (it seems to suggest but not require) - see attached screenshot. By experimenting with passwords, I found out the actual requirements are the same as the password field in my registration form is set to! I asked Formidable Support today about this and they did not say they would fix it! This was offered as the only possible solution: write a snippet that creates your own password reset page shortcode. They had none to offer as an example. Perhaps someone else on this forum has created something like this already?
What you are asking about has nothing to do with Formidable. Formidable does not control WordPress password settings. The Formidable reset password form calls the wp_get_password_hint() function to display the password hint as defined in WordPress. This function includes a filter where WordPress allows you to change the text of the password hint.
No need to apologize Michael. Formidable uses a lot of WordPress API calls.
This code changes the password hint:
function replace_wp_password_hint( $hint_text ) {
return "Passwords must be at least 8 characters long and include upper and lower case characters, numbers, and special characters."; }
add_filter( 'password_hint', 'replace_wp_password_hint', 10, 1 );
Please login or Register to submit your answer