Well in that case you would need to edit one of the plugins for the mod.
Find the plugin
Render The Postbit Template found under the group,
[OzzModz] First Post On All Pages Per Thread/Forum
Then replace the contents of that with the following.
PHP Code:
global $vbulletin;
if ($this->registry->options['ozzmodz_firstpost_display_active']AND is_member_of($vbulletin->userinfo, explode(',', $this->registry->options['ozzmodz_firstpost_display_groups'])))
{
$included_forums = explode(',', $this->registry->options['ozzmodz_firstpost_display_forums']);
$included_thread = explode(',', $this->registry->options['ozzmodz_firstpost_display_threads']);
if (THIS_SCRIPT != 'private')
{
//if($this->thread['firstpostid'] == $this->post['postid'] AND $vbulletin->GPC['pagenumber'] > 1 AND in_array($this->thread['threadid'], $included_thread))
if($this->thread['firstpostid'] == $this->post['postid'] AND in_array($this->thread['threadid'], $included_thread))
{
switch ($vbulletin->options['ozzmodz_firstpost_display_template'])
{
case 1: $this->templatename = 'postbit'; break;
case 2: $this->templatename = 'ozzmodz_firstpost_display_postbit'; break;
}
}
if($this->thread['firstpostid'] == $this->post['postid'] AND $vbulletin->GPC['pagenumber'] > 1 AND in_array($this->thread['forumid'], $included_forums))
{
switch ($vbulletin->options['ozzmodz_firstpost_display_template'])
{
case 1: $this->templatename = 'postbit'; break;
case 2: $this->templatename = 'ozzmodz_firstpost_display_postbit'; break;
}
}
}
}