XF 2.2 Disable quoting per forum?

WoodiE

Well-known member
Is there a way, either by a stock function or an add-on, that would allow me to disable post quoting on a per forum basis?

This would be handy as I run giveaways on some of my sites and many users will quote the first post (my post) as an entry which just creates a ton of un-needed alerts and for new users will put them into a moderation queue since most of my giveaway posts typically include one or more links.

Preventing users to quote in my giveaway forum would alleviate those issues.
 
You can hide the quote and reply links in specific forums by adding this to the extra.less template.

Replace the node IDs as required.

Less:
[data-container-key="node-2"],
[data-container-key="node-8"]
{
    .actionBar-action
    {
        &--mq,
        &--reply
        {
            display: none;       
        }
    }
}

That won't stop people manually quoting or highlighting and quoting though - it just hides the post links.
 
Top Bottom