here ya go mate
open up functions_showthread.php and find
Code:
if ($vboptions['logip'] == 2)
{
$show['ip'] = true;
eval('$post[\'iplogged\'] .= "' . fetch_template('postbit_ip') . '";');
}
change it to...
Code:
if ($vboptions['logip'] == 2 || $thread['forumid'] == XX)
{
$show['ip'] = true;
eval('$post[\'iplogged\'] .= "' . fetch_template('postbit_ip') . '";');
}
changing XX to the forum you want.
Haven't tested it yet, but I should work