How to add new topic button?

Status
Not open for further replies.

Moby Master

Active Member
265
2009
0
0
Well I wanna add this:
2z6e4ns.png


Cannot find code to add this, pls help me, give me tutorial or whatever, I'm using vBulletin 3.7.0.
Site:
www.RapidW.org
 
9 comments
Just locate post reply button in Postbit Templates >> postbit or postbit_legacy (which ever r u using (search for reply and u'll find it) and add another
Code:
<a href="..."><img src="..." /></a>
code next to it :P
 
Just locate post reply button in Postbit Templates >> postbit or postbit_legacy (which ever r u using (search for reply and u'll find it) and add another
Code:
<a href="..."><img src="..." /></a>
code next to it :P
Give me text in this ... please, I'm not great at vBulletin ;)
 
Should be in showthread

<!-- controls above postbits -->
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin-bottom:3px">
<tr valign="bottom">
<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 />
<td class="smallfont">&nbsp;</td>
</if>
<if condition="$show['pagenav']"><td align="$stylevar
">$pagenav</td></if>
</tr>
</table>
<!-- / controls above postbits -->​


replace with

<!-- controls above postbits -->
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin-bottom:3px">
<tr valign="bottom">
<if condition="$show['largereplybutton']">
<td class="smallfont"><a href="newthread.php?$session[sessionurl]do=newthread&amp;f=$foruminfo[forumid]"><img src="$stylevar[imgdir_button]/newthread.gif" border="0" alt="$vbphrase[post_new_thread]" /></a>&nbsp;&nbsp;<a href="newreply.php?$session[sessionurl]do=newreply&amp;noquote=1&amp;p=$FIRSTPOSTID"><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 />
<else />
<td class="smallfont">&nbsp;</td>
</if>
<if condition="$show['pagenav']"><td align="$stylevar
">$pagenav</td></if>
</tr>
</table>
<!-- / controls above postbits -->​


=)​
 
Status
Not open for further replies.
Back
Top