Log in

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&amp;noquote=1&amp;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&amp;f=$foruminfo[forumid]" rel="nofollow"><img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" /></a>&nbsp;

<a href="newreply.php?$session[sessionurl]do=newreply&amp;noquote=1&amp;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 />