i want to share some code that will make
something special in specific forum/categories not for entire forum, i had use this code very often, you can wrap your code in this conditional
1. this for all templates, except postbit template
If you want to do something special in the showthread template if the forum ID is #27, you can wrap your code in this conditional
Code:
<if condition="$forumid == 27">
// your code just for specific forum or categories here
</if>
2. this is just for postbit template
Code:
<if condition="$thread[forumid] == X">
// your code just for specific forum or categories here
</if>
Change X to forum or categories that you choose
example is here
Removing QUOTE button for a specific forum - vBulletin Community Forum
3. if the code is in PHP files
Code:
if ($forumid == X)
{
// your code just for specific forum or categories here
}
Change X to forum or categories that you choose