I’m facing a problem with wordpress related with the new version, when a user wants to recover its password and click on the recovery mail, the password is autogenerated.
Is there any way to reset the password manually (like in other versions it was by default)?
I attach an example picture
Post Views: 0
This is how it looks like on my local 4.3 install:
where it’s possible to manually reset the password.
Note that if we disable javascript, it will show up like this:
This is really simple.
data-pw="<?php echo esc_attr( wp_generate_password( 16 ) ); ?>"
data-pw=""
This should solve your problem.