Viewing 1 replies (of 1 total)
  • Ciprian

    (@cipriandoroftei)

    You can hide it with CSS. Add this snippet to the end of functions.php file before the last closing php tag (if there is one).

    //Hide Remember Me check box from WordPress login page
    add_action('login_head', 'bluknight12_remove_remember');
    function bluknight12_remove_remember()
    {
        echo '<style type="text/css">.forgetmenot { display:none; }</style>';
    }

    You can change the name of the function to whatever you like, just make sure it is personalized so that it won’t conflict with other plugins.

Viewing 1 replies (of 1 total)
  • The topic ‘Remember Me’ is closed to new replies.