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.
|
Thanks for this. It works great.
Now can anyone tell me how that line should look if you want to have more than 1 forum? (example: forum A should use formA.php, forum B should use formB.php, etc.) Basically, how do you extend the "if condition" to work for more than 1 forumid?