I removed the Tag field so people couldn't enter Tags in the first place.
I found it in:
style manager >> new posting templates >> newthread
Modifying the string:
Code:
<if condition="$show['tag_option']">
with one of the following:
If you DON'T want the Tags field displayed for a specific forum, it would be:
Code:
<if condition="$show['tag_option'] AND $forumid!=12">
12 being the forum ID number you define.
If you DO want it displayed but only for forums 2, 4 and 5, it would be:
Code:
<if condition="$show['tag_box'] AND in_array($forumid, array(2,4,5))">
Works for me with 3.8.1