Well if you really... really don't want it in the db, you can edit functions_newpost.php
search for
PHP Code:
// ### POST NEW POST ###
$DB_site->query("
INSERT INTO " . TABLE_PREFIX . "post
(threadid, parentid, title, username, userid, dateline, pagetext, allowsmilie,
showsignature, ipaddress, iconid, visible, attach)
VALUES
($threadinfo[threadid], $parentid, '" . addslashes($post['title']) . "',
'" . addslashes($post['postusername']) . "', $bbuserinfo[userid], " . TIMENOW . ",
'" . addslashes($post['message']) . "', $post[enablesmilies], $post[signature],
'" . addslashes($post['ipaddress']) . "', $post[iconid], $post[visible], $totalattachments)
");
replace with
PHP Code:
if ($foruminfo[forumid] != 10)
{
// Show Signature
$sigfield = "showsignature,";
$sigvalue = "$post[signature],";
}
// ### POST NEW POST ###
$DB_site->query("
INSERT INTO " . TABLE_PREFIX . "post
(threadid, parentid, title, username, userid, dateline, pagetext, allowsmilie,
$sigfield ipaddress, iconid, visible, attach)
VALUES
($threadinfo[threadid], $parentid, '" . addslashes($post['title']) . "',
'" . addslashes($post['postusername']) . "', $bbuserinfo[userid], " . TIMENOW . ",
'" . addslashes($post['message']) . "', $post[enablesmilies], $sigvalue
'" . addslashes($post['ipaddress']) . "', $post[iconid], $post[visible], $totalattachments)
");
Personally I'd be more inclined to use the first option as this is really a pretty basic template mod that doesn't need to be updated when you update your vb version.