You'd be suprised...
In includes/functions_showthread.php find:
PHP Code:
else if ($ignore["$post[userid]"]/* AND !in_array($post['userid'], explode(' ', $bbuserinfo['buddylist']))*/)
{
$maintemplatename = 'postbit_ignore';
}
Replace with:
PHP Code:
else if ($ignore["$post[userid]"]/* AND !in_array($post['userid'], explode(' ', $bbuserinfo['buddylist']))*/)
{
$maintemplatename = 'postbit_ignore';
}
else if ($thread['forumid'] == "24" && $thread['firstpostid'] == $post['postid'])
{
$maintemplatename = 'postbit_custom_firstpost';
}
else if ($thread['forumid'] == "24" && $thread['firstpostid'] != $post['postid'])
{
$maintemplatename = 'postbit_custom_otherposts';
}
Then create the two templates postbit_custom_firstpost and postbit_custom_otherposts.
Tell me if it works.