PDA

View Full Version : How do i disable quote??


elenh
11-24-2009, 09:59 AM
Many of my members pressing quote button from the first post to reply in a topic.
Sometimes the #1 post haves big images and with the quote the replys growing to much up.

Is there any option to disble quote only for the #1 post or to disable the image tags if a member press quote in the #1 post?

Thank you.

LifesGreatestGift
11-25-2009, 12:06 PM
Open up your postbit_legacy template and look for the following:


<if condition="$post['replylink']">
<a href="$post[replylink]" rel="nofollow"><img src="$stylevar[imgdir_button]/<if condition="$post['forwardlink']">reply_small<else />quote</if>.gif" alt="$vbphrase[reply_with_quote]" border="0" /></a>
</if>


Make it look like this:


<if condition="$thread['firstpostid'] != $post['postid']">

<if condition="$post['replylink']">
<a href="$post[replylink]" rel="nofollow"><img src="$stylevar[imgdir_button]/<if condition="$post['forwardlink']">reply_small<else />quote</if>.gif" alt="$vbphrase[reply_with_quote]" border="0" /></a>
</if>

</if>


That will disable "Quote" on all first post's (topic starters). You may place it on the quick reply as well if you'd like.

mp3president
11-26-2009, 01:41 PM
I'm hitching along with this topic.
But i've tried this option, but still a member can quote the first post.
Now i have:
<if condition="$post['forwardlink']">
<a href="$post[forwardlink]"><img src="$stylevar[imgdir_button]/forward.gif" alt="$vbphrase[forward_message]" border="0" /></a>
</if>
<if condition="$thread['firstpostid'] != $post['postid']">

<if condition="$post['replylink']">
<a href="$post[replylink]" rel="nofollow"><img src="$stylevar[imgdir_button]/<if condition="$post['forwardlink']">reply_small<else />quote</if>.gif" alt="$vbphrase[reply_with_quote]" border="0" /></a>
</if>

</if>
<if condition="$show['multiquote_post']">

What am i doing wrong?

Grtz.

cavebox
11-26-2009, 07:02 PM
I'm hitching along with this topic.
But i've tried this option, but still a member can quote the first post.
Now i have:
<if condition="$post['forwardlink']">
<a href="$post[forwardlink]"><img src="$stylevar[imgdir_button]/forward.gif" alt="$vbphrase[forward_message]" border="0" /></a>
</if>
<if condition="$thread['firstpostid'] != $post['postid']">

<if condition="$post['replylink']">
<a href="$post[replylink]" rel="nofollow"><img src="$stylevar[imgdir_button]/<if condition="$post['forwardlink']">reply_small<else />quote</if>.gif" alt="$vbphrase[reply_with_quote]" border="0" /></a>
</if>

</if>
<if condition="$show['multiquote_post']">

What am i doing wrong?

Grtz.

Hi MP3President,

the solution is often that you also must change this in postbit template.

regards,
Cavebox

mp3president
11-26-2009, 07:31 PM
Many thanks Cavebox.
This answer helped us a lot.
And of course thanks to the original poster.

Grtz.

elenh
11-26-2009, 08:42 PM
Open up your postbit_legacy template and look for the following:



Make it look like this:



That will disable "Quote" on all first post's (topic starters). You may place it on the quick reply as well if you'd like.

Many thanks!