View Full Version : Post New Thread and New Thread
tonyph33r
09-29-2007, 03:20 AM
i was wonder how can i add NEW Thread button next to Post new Thread?
dismas
09-29-2007, 03:25 AM
Huh?
Do you mean put a "Post New Thread" button next to the "Post Reply" button? If so, see here (http://www.vbulletin.com/forum/showthread.php?t=235637).
Michael Biddle
09-29-2007, 03:38 AM
<a href="newthread.php?f=$thread[forumid]"><img src="location here" /></a>
tonyph33r
09-29-2007, 08:48 PM
Huh?
Do you mean put a "Post New Thread" button next to the "Post Reply" button? If so, see here (http://www.vbulletin.com/forum/showthread.php?t=235637).
that not working i want to add on the side like this one
https://vborg.vbsupport.ru/
SCRIPT3R
09-30-2007, 04:39 AM
that not working i want to add on the side like this one
http://img233.imageshack.us/img233/8457/46191603vh7.png
In SHOWTHREAD Template...
Find (twice):
<if condition="$show['largereplybutton']">
<td class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&noquote=1&p=$FIRSTPOSTID" rel="nofollow"><if condition="$show['closethread']"><img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /><else /><img src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" /></if></a></td>
<else />
Replace both with the follwing:
<if condition="$show['largereplybutton']">
<td class="smallfont">
<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>
<a href="newreply.php?$session[sessionurl]do=newreply&noquote=1&p=$FIRSTPOSTID" rel="nofollow"><if condition="$show['closethread']"><img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /><else /><img src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" /></if></a></td>
<else />
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.