MyBB Community Forums

Full Version: Disabling reputation in specific forums
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Trying to figure out how to hide {$post['button_rep']} on posts made in certain subforums.

I'm guessing easiest way to do it would be to add a template conditional for checking if the forum has been set to not increase post counts, but I don't know the variable involved.

Any advice? Smile
<if $forum['usepostcounts'] then>{$post['button_rep']}</if>
This should show it only in forums which count posts.
thank you!