• Hello, apparentl WordPress has added an eye icon to hide/show your password, which is nice and all but really annoys me personally as it messes up the Tab order I still use on most places, user, tab, password, tab spacebar (remember me), enter (login)

    now after you press tab on the password field it will reveal the password (no thanks) and also select all the password field so if pressing the spacebar again in reflex it will replace the password, just being more and more annoying.

    so is there a way to get rid of that thing so I can enjoy logging into my blog again? thanks

    • This topic was modified 4 years, 7 months ago by Jan Dembowski. Reason: Moved to Fixing WordPress, this is not an Everything else WordPress topic
Viewing 1 replies (of 1 total)
  • Hi @my1xt,

    You can get this issue solved by installing a plugin and adding a small css snippet for hidding the eye icon button from the login page.

    You can install Custom Login Admin Front-end CSS to add the CSS on the wp-login page.

    You can follow the steps given below to solve this issue further:

    • Install and activate the above mentioned plugin
    • Navigate to ‘Appearance -> Custom LAF Css’
    • Add the CSS in the section named as ‘Login CSS’ given at the bottom of this reply
    • Click on ‘Save CSS’ button
    
    #loginform .wp-pwd button {
        display:none;
    }
    

    Please let us know if this solution works or not.

Viewing 1 replies (of 1 total)
  • The topic ‘Remove eye icon in password field on wp-login’ is closed to new replies.