Important tip:
Get rid of the sessionhash variable in the URL in the templates:
Code:
<input type="hidden" name="url" value="$url/forumdisplay.php?s=*********&forumid=YOURID">
Remove that bit. The sessionhash is a dynamic variable that is meant to be different for every user. You are going to get different users logged on in the same session with that URL.
Replace it with:
Code:
<input type="hidden" name="url" value="$url/forumdisplay.php?s=$session[sessionhash]
&forumid=YOURID">
instead.
Also, since this is a template hack, this belongs in the template forum - did you read the posting rules of this forum? Moving this there now...
A REMINDER: The Hack Forums are for PHP File edits without exception. Template mods stay in this forum.