Log in

View Full Version : Remove the "Quote" button from the first post


medicalforums
07-20-2011, 10:08 PM
How do I remove the "Quote" button from the first post only.

I think, quoting the first post is redundant! :confused:

Please help

Post Reader
07-21-2011, 08:02 AM
Open up template postbit or postbit_legacy (Whichever your forum is set to)


Find:
<vb:if condition="$show['quickreply'] AND !$show['threadedmode']">
<a id="qr_{vb:raw post.postid}" class='quickreply' href="{vb:raw post.replylink}" rel="nofollow"><img id="replyimg_{vb:raw post.postid}" src="{vb:stylevar imgdir_button}/trans_40b.png" alt="{vb:rawphrase quick_reply_to_this_message}" /> {vb:rawphrase reply}</a>
<span class="seperator">&nbsp;</span>
</vb:if>

Replace with:

<vb:if condition="$show['quickreply'] AND !$show['threadedmode']">
<a id="qr_{vb:raw post.postid}" class='quickreply' href="{vb:raw post.replylink}" rel="nofollow"><img id="replyimg_{vb:raw post.postid}" src="{vb:stylevar imgdir_button}/trans_40b.png" alt="{vb:rawphrase quick_reply_to_this_message}" /> {vb:rawphrase reply}</a>

<vb:if condition="$thread['firstpostid'] != $post['postid']">
<span class="seperator">&nbsp;</span>
</vb:if>

</vb:if>

Manoel J?nior
07-21-2011, 03:03 PM
Hello, please.. VB3.8