Log in

View Full Version : Mod to make remember me checked


Dmit87
08-09-2007, 04:14 PM
Where's the code to change it so remember me is automatically checked?

EnIgMa1234
08-09-2007, 04:17 PM
Try

Find in navbar template
<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>

Replace With:
<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" checked="checked" />$vbphrase[remember_me]</label></td>

Dmit87
08-09-2007, 04:30 PM
thanks.