Yes, I did not word my first post correctly...
I guess I will have figure out how to hide the new thread button in that forum and show my linked button.., I only want members to reply to threads that are automatically created via submitted form.
My next adventure begins.... Thanks Lynne!
--------------- Added [DATE]1355459067[/DATE] at [TIME]1355459067[/TIME] ---------------
I got it... no plugin required.
I looked at the Vbulletin 3.8 Conditionals List on vb.com & found what I was looking for.
For those that want to hide the "New Thread" Button in certain forum you will need to edit the FORUMDISPLAY template. (Backup your template before you edit it)
There will be two instances of the following.
Find:
Code:
<td class="smallfont"><if condition="$show['newthreadlink']"><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><else /> </if></td>
Replace with:
Code:
<if condition="$forumid != 6">
<td class="smallfont"><if condition="$show['newthreadlink']"><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><else /> </if></td></if>
The only change in the code is the if conditional.
Also, my forum id is 6 that I want to hide the New Thread Buttons, change that number to the forum ID you want to hide the New Thread button in...
Thank You for your replies...