PDA

View Full Version : [HowTo] [3.5.0] Default check [x] Remember Me?


Floris
Fri 30th Sep '05, 3:39pm
[HowTo] [3.5.0] Default check [x] Remember Me?

This little template modification will guide you through the few simple steps that will make the '[ ] Remember Me' checkbox automaticly checked (as it was in 3.0).


Admin Control Panel > Styles & Templates > Style Manager > Dropdown: Edit Templates > Expand the navigation bar templates group > Customize the navbar template and find this code:<input type="checkbox" name="cookieuser" value="1" tabindex="103" id="cb_cookieuser_navbar" accesskey="c" />At the end, before the /> add 'checked="checked"', so you get:<input type="checkbox" name="cookieuser" value="1" tabindex="103" id="cb_cookieuser_navbar" accesskey="c" checked="checked" />
Save the template, and you're done.

Colin F
Mon 6th Mar '06, 8:15am
This also shows up in the STANDARD_ERROR, STANDARD_ERROR_LITE and STANDARD_ERROR_LOGIN templates.

Edit each of the templates listed above.
Find:
<input type="checkbox" name="cookieuser" value="1" id="cb_cookieuser" tabindex="1" />
Replace that with:
<input type="checkbox" name="cookieuser" value="1" id="cb_cookieuser" tabindex="1" checked="checked" />