Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
WPB Cup
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

How to Remove the Remember Me Option from WordPress Login

Editorial Note: We earn a commission from partner links on WPBeginner. Commissions do not affect our editors' opinions or evaluations. Learn more about Editorial Process.

Do you want to remove the remember me option from your WordPress login page?

The ‘Remember Me’ option is a small checkbox that lets you and your users save their username and password on the WordPress login screen.

In this article, we’ll show you how to remove the ‘Remember Me’ option, step by step.

How to Remove the Remember Me Option from Your WordPress Login (2 Ways)

Why Remove ‘Remember Me’ from Your WordPress Login Screen?

When you or your website users check the ‘Remember Me’ box on the WordPress login page, it will store that information in a browser cookie for 2 weeks.

Remember me checkbox example

That means that next time they’re on your site, they can access the dashboard right away without having to go to the login page again.

Although it makes logging in faster, it could be a potential security risk for people accessing their WordPress admin area from public computers and WiFi networks.

By disabling the ‘Remember me’ checkbox, you and your users will have to log in every time the web browser is closed. They can still save their username and password in their browser’s storage or a password manager app so they don’t have to type it in every time.

Overall, this improves your WordPress security and helps to keep your website safe from hackers.

With that said, let’s show you how to remove the ‘Remember Me’ option on your WordPress login page. Simply use the quick links below to jump straight to the method you want to use.

Method 1. Removing the Remember Me Option from the Default WordPress Login Page

The easiest way to remove the remember me option from the default WordPress page is by using the Remember Me Controls plugin. 

First thing you need to do is install and activate the plugin. For more details, see our beginner’s guide on how to install a WordPress plugin.

Note: We’ve tested the plugin as of this post’s last updated date, and it works with WordPress 6.0 with no issues. 

Upon activation, navigate to Settings » Remember Me to configure the plugin settings.

Then, simply check the box in the ‘Disable the “Remember Me” feature’ section and click the ‘Save Changes’ button.

Disable remember me checkbox

Now, you can log out of your WordPress site.

When you return to the login screen, the ‘Remember Me’ checkbox will be disabled. 

Remember me checkbox disabled

Method 2. Removing the Remember Me Option from Custom WordPress Login Pages

If you’re creating a custom WordPress login page for your WordPress membership site or online store, then you can hide the ‘Remember Me’ option by using SeedProd.

SeedProd

SeedProd is the best drag and drop WordPress page builder in the market used by over 1 million websites. You can use it to create a completely custom WordPress theme without writing any code.

Aside from create custom WordPress themes, SeedProd also comes with the ability to create custom WordPress login pages, custom 404 pages, and more.

First, you will need to use SeedProd plugin to create a custom login page. For more details, see our step by step guide on how to create a custom login page.

Then, when you’re customizing the login page, you can disable the ‘Remember Me’ option by clicking on the ‘Additional Options’ drop down in the left-hand options menu.

Click additional options in page builder

Next, delete the text in the ‘Remember User Label’ box. 

Then, click the ‘Save’ button and select the ‘Publish’ drop down to make your login page live.

Delete remember me text and publish

Now, you can visit your custom login page to see the ‘Remember Me’ option is gone.

Custom login page no remember me

We hope this article helped you learn how to remove the remember me option from your WordPress login page. You may also want to see our ultimate guide on how to speed up WordPress and our expert picks of the best business phone services for small businesses.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

Disclosure: Our content is reader-supported. This means if you click on some of our links, then we may earn a commission. See how WPBeginner is funded, why it matters, and how you can support us. Here's our editorial process.

Editorial Staff

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

The Ultimate WordPress Toolkit

Get FREE access to our toolkit - a collection of WordPress related products and resources that every professional should have!

Reader Interactions

13 CommentsLeave a Reply

  1. Syed Balkhi says

    Hey WPBeginner readers,
    Did you know you can win exciting prizes by commenting on WPBeginner?
    Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
    You can get more details about the contest from here.
    Start sharing your thoughts below to stand a chance to win!

  2. Jiří Vaněk says

    As a security feature for sites where users can register, it is very good. Unfortunately, a lot of people today still use a browser to save their passwords, instead of a password manager.

    • WPBeginner Support says

      That is true but hopefully they are not saving their login information to a public computer’s browser :)

      Admin

  3. Garrett O'Brien says

    NOTE TO MODERATOR:

    That line to delete did not display properly, I completely forgot that this comment section is HTML friendly…

    This is the correct code, spaces added to keep the display intact…

    < input name="rememberme" type="checkbox" id="rememberme" value="forever" / >

  4. Garrett O'Brien says

    Actually, instead of either CSS display:none or using an addition to the function.php file, open the wp-login.php and remove the following line

    <input name="rememberme" type="checkbox" id="rememberme" value="forever" />

    We haven’t tried testing it by moving the wp-login.php to the child theme as we have a checklist of things to do with each WP upgrade, this being one of them….

  5. Garrett O'Brien says

    Go to your function.php file and add this to the end…

    //Hide Remember Me check box from WordPress login page
    add_action(‘login_head’, ‘har_remember_me_not’);
    function har_remember_me_not()
    {
    echo ‘.forgetmenot { display:none; }’;
    }

    Not sure if it will fix the security issue noted by NATHAN CORBIER but it will reduce the number of plugins you have by one…

  6. Mathew Porter says

    Is there also not a file to reduce the time set for a user staying logged in when the ‘remember me’ box is ticked such as a cookie etc?

  7. Kerry Webster says

    @Nathan +1 – Plugin’s way is better. .css change to display:none is a mask. You could of course incorporate this plugin code into the functions.php file of a theme if you want to permanently remove the functionality but this is a user/site owner preference. I would build this into a option for the theme to allow the user to decide.

  8. Nathan Corbier says

    Setting the rememberme ID to display:none; isn’t a good fix. Bots, smart people who inspect source, or a browser that simply ignores display:none will still show it, and still allow the form to be submitted with that checked.

    If you are plugging what you consider to be a security hole, don’t half ass it by “making the check mark go away.” It hasn’t left, its just your browser is nice enough to honor the CSS display attribute.

    The hole still exists.

  9. chris mccoy says

    instead of doing a regex on login_form you can also just set the css class to display none

    p.forgetmenot { display:none;}

  10. Chris says

    Hi, thanks for that great tip – is there a solution to remove this without using a plugin?
    Thanks.

    • RW says

      please seem comment above. Just add
      ‘p.forgetmenot {display:none;}’ to your css stylesheet.

      Thanks,
      Bob

Leave a Reply to Garrett O'Brien Cancel reply

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.

WPBeginner Assistant
How can I help you?

By chatting, you consent to this chat being stored according to our privacy policy and your email will be added to receive weekly WordPress tutorials from WPBeginner.