Quote:
Originally Posted by PKRWUD
This is how I did it...
In Forumdisplay template, find:
Code:
<a href="newthread.php?$session[sessionurl]do=newthread&f=$foruminfo[forumid]">
And replace it with:
Code:
<a href="<if condition="$foruminfo['forumid'] == xx">form.php<else />newthread.php?$session[sessionurl]do=newthread&f=$foruminfo[forumid]</if>">
Except you would sustitute your forum ID where it says xx. Works excellent.
|
can i send variables in the form.php. ie. if i made a link that said
<a href="form.php?$session[sessionurl]do=newthread&f=$foruminfo[forumid]">
Can I access the forumid variable inside the form.php?
Will the form.php call work?
I am essentially trying to override the newthread.php.
Thanks for all your help so far.