You can edit the conditional for the signature in postbit(_legacy). By default, it is (off the top of my head):
Code:
<if condition="$show['signature']">
Change it to (replace X with forum ID to not display in):
Code:
<if condition="$show['signature'] AND $forum['forumid'] != X">
For multiple forums:
Code:
<if condition="$show['signature'] AND !in_array($forum['forumid'], array(X, Y, Z))">