Hi,
I found this thread here and changed the file class-members.php as directed from 6 to ten and uploaded it again to our site.
Unfortunately, I still can choose a password with six letters only. What am I doing wrong?
Thanks for caring,
Bernd
Hi @berndg,
Please try the following code to increase the pass_min_length value:
add_filter('wpforo_pass_min_length', function(){ return 8; });
Please note the red marked value is the pass_min_length value and can be changed.
The code should be added in the current active WordPress theme functions.php file.
Hi @berndg,
We've just checked and don't find such an issue. The code provided above workes as expected.
Please make sure you've put the code in the right place. It should be added in the current active WordPress theme functions.php file. The screenshot below: https://www.screencast.com/t/F1aEQb0pay8J
Also please note the returned value 8 is the pass_min_length value and can be changed.