MyBB Community Forums

Full Version: Remember me?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm using the ''Novus Ocean'' theme, and there is no ''Remember me'' option at logging in, so whenever you leave the forum, and go back, you have to login again, how can I add this option to remember an user?
I'm pretty sure that's a 1.4 theme, so all the new features added in 1.6 will be missing.
Aw.. that sucks.

Is there really no way to add it Sad?
You'll need to manually add all the new features. Check the code in the default templates and add it to the Novus templates.
I checked, and this seems to be the code.
lang.remember_me = "{$lang->remember_me}";

But no matter where I put it, it won't show Sad.

Its just because the templates of my theme are so heavily editted that changing to another 1.6 theme would be too much hassle.
You have to use this code:
<label title="{$lang->remember_me_desc}"><input type="checkbox" class="checkbox" name="remember" checked="checked" value="yes" /> {$lang->remember_me}</label>
(2011-02-26, 10:36 PM)WbDev Wrote: [ -> ]You have to use this code:
<label title="{$lang->remember_me_desc}"><input type="checkbox" class="checkbox" name="remember" checked="checked" value="yes" /> {$lang->remember_me}</label>
Okay, thanks, I will try it.