'Remember Me' Checked by Default in Navbar

Daz

New Member
I'm sure there are plenty of vBulletin users who would love to have the 'Remember Me' box on the navbar login form checked by default, so here it is:

Find the following in your navbar template (Its within the <!-- login form --> section):

Code:
<td class="smallfont" colspan="2" nowrap="nowrap"><label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" tabindex="103" id="cb_cookieuser_navbar" accesskey="c" />$vbphrase[remember_me]</label></td>

Change it to this:

Code:
<td class="smallfont" colspan="2" nowrap="nowrap"><label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" tabindex="103" id="cb_cookieuser_navbar" accesskey="c" [color=Lime]checked="checked"[/color] />$vbphrase[remember_me]</label></td>

You'll be adding the part that's highlighted in green at the end of the 'replacement' code and telling the browser to check that box by default.

rememberme.gif
 
Top