Quote:
Originally Posted by Rabbitoh Warren
Anyone know how to stop the link to "Submit to Quotes" from appearing when a user is viewing their private messages?
|
In your postbit or postbit_legacy template find:
Code:
<!-- BEGIN QuoteIt! -->
<a href="$vboptions[bburl]/quotes.php?$session[sessionurl]do=submitpost&postid=$post[postid]">$vbphrase[submit_to_quotes]</a>
<!-- END QuoteIt! -->
And REPLACE IT with:
Code:
<!-- BEGIN QuoteIt! -->
<if condition="THIS_SCRIPT=='showthread' OR THIS_SCRIPT=='showpost'">
<a href="$vboptions[bburl]/quotes.php?$session[sessionurl]do=submitpost&postid=$post[postid]">$vbphrase[submit_to_quotes]</a> </if>
<!-- END QuoteIt! -->