Quote:
Originally Posted by Nickamsweet
Hey, Great mod... just one problem i have, i uploaded everything and works fine, just that if you log into the forum then click on Arcade, it logs you out then have to re-login...
Any way to get around this?
|
It should be ok if you have the "Remember Me" checked when logging into the forum. I notice this being a big problem (even when posting) with people using AOL. To overcome this, I have all of my forums set with the "Remember Me" checkbox already checked. Here are direcctions to accomplish that...
Find the following in your navbar template
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" checked="checked" />$vbphrase[remember_me]</label></td>