Log me in automatically box

Support for PhpBB3.
Post here to get help with any phpBB3 related issue
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
If not your topic may be ignored or locked!

Log me in automatically box

Post by iheartbreakz »

how can i get the login me in automatically box already ticked as defauly like in the picture below?

Re: Log me in automatically box

Post by Stoker »

open login_body.html and find:

Code: Select all

<input type="checkbox" name="autologin" id="autologin" tabindex="4" />
Replace with:

Code: Select all

<input type="checkbox" name="autologin" id="autologin" tabindex="4" checked="checked" />

Re: Log me in automatically box

Post by iheartbreakz »

thanks man! appreciate it ;)

Re: Log me in automatically box

Post by am.hitek »

Thanks!