CongTuDepTrai |
12-07-2005 10:00 PM |
Add Newthread button in Showthread
Work with 3.5.1 too
this is the small code for the showthread template, add newthread button next to newreply button:
to do that
find in showthread template
Code:
<if condition="$show['largereplybutton']">
<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" />
and replace with the code below
Code:
<td class="smallfont"><a href="newthread.php?$session[sessionurl]do=newthread&f=$forumid" rel="nofollow"><img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" /></a>
<if condition="$show['largereplybutton']">
<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" />
remember that there is 2 reply button above and below the thread so you have to do that twice
|