Log in

View Full Version : SOLVED - remove quick reply from post bit?


clubplanet
12-23-2010, 07:33 PM
How can I remove the Reply button from posts?
It has caused a lot of confusion because people are clicking reply on another user's post up in the thread, which makes it confusing to other people reading because the post hasnt been quoted.

I would like to keep reply with quote, and force users to use the quick reply at the bottom or click on post reply button at the top and bottom.

Lynne
12-23-2010, 08:35 PM
Should be able to just remove it from the postbit template:
<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:raw vboptions.cleargifurl}" alt="{vb:rawphrase quick_reply_to_this_message}" /> {vb:rawphrase reply}</a>
<span class="seperator">&nbsp;</span>
</vb:if>

clubplanet
12-24-2010, 10:45 AM
that did the trick editing postbit_legacy. Thanks a lot.