I use a similar forms modification. What I did was add an if conditional (my favorite suggestion today, apparently) to the New Thread button which will instead show a link to starting a new form when in that forum, rather than the New Thread button. You need the vB4 specific conditionals for this (I did this on vB3), but if you can look them up and replace them, you can do something similar. This is in your
FORUMDISPLAY template. The red parts are the parts I added:
Code:
<if condition="$show['newthreadlink']">
<if condition="$forumid == 3">
<a href="misc.php?$session[sessionurl]do=form&fid=1" rel="nofollow" style="font-size:13px">New Form</a>
<else />
<a href="newthread.php?$session[sessionurl]do=newthread&f=$foruminfo[forumid]" rel="nofollow"><img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" /></a>
</if><else /> </if>
3 is the forum ID where my forms are submitted. I used a text link because I didn't have time to make a new image at the time. But you can use whatever you want. A button, a link, or nothing.