WordPress Reset password Strength set to medium

You’ll find a discussion of how the password strength is computed here: How is password strength calculated? . As an aside, there is some discussion (one is here: https://nakedsecurity.sophos.com/2015/03/02/why-you-cant-trust-password-strength-meters/ ) that password strength ‘analyzers’ don’t really result in strong passwords.

remove different admin menu for specific users

You mention user ‘status’….are you looking to show/hide the menu for classes of users (by role/capability) rather than individual users (by ID)? I do something similar so that users below a level cannot access certain back-end menu items, using current_user_can and !current_user_can. As an example, this checks to see if a user is an Editor … Read more