holdsession.php fix stopped working
.
I found it to just be easier to make all the check boxes checked by default..
example in the screen shot below you'll see the templates to edit
search templates for
Code:
{vb:rawphrase remember_me}
here is a example of the code your looking for
Code:
<label for="cb_cookieuser"><input type="checkbox" name="cookieuser" id="cb_cookieuser" value="1" tabindex="1" /> {vb:rawphrase remember_me}</label>
add checked="checked" where you see it here
Code:
<label for="cb_cookieuser"><input type="checkbox" name="cookieuser" id="cb_cookieuser" value="1" tabindex="1" checked="checked" /> {vb:rawphrase remember_me}</label>
*note
the code might be a litte different in each template so just search for the rawphrase remember_me and add the checked="checked"
right before /> {vb:rawphrase remember_me}
this will have the remember me checked default..
hope it helps you