the easiest way would be to add conditional statements in forumhome_forumbit_level1_post (it could be any of the forumhome_forumbit_level?? templates)
for example ...
PHP Code:
<if condition="$forum['lastpostinfo'] != '-'">
$forum[lastpostinfo]
</if>
you could probably add a plugin...
PRODUCT: vBulletin
LOCATION: forumbit_display
TITLE: Forum Link
PHP CODE:
PHP Code:
if ($forum['link'])
{
$forum['replycount'] = '';
$forum['threadcount'] = '';
$forum['lastpostinfo'] = '';
}
ACTIVE: yes