If the simple module doesn't work try this:
1.Create a template called
adv_portal_zh_chatting_users with this content:
Code:
<tr>
<td class="thead"><span class="smallfont"><strong>Users Now Chatting: $totalchatters</strong></span></td>
</tr>
<tr>
<td class="alt1" width="100%"><div class="smallfont">$chatters</div></td>
</tr>
2.Create a new php file called
zh_now_chatting.php and upload it to
modules folder with the following content:
Code:
<?php
($hook = vBulletinHook::fetch_hook('forumhome_start')) ? eval($hook) : false;
$chatters = str_replace( "member.php", $vbulletin->options['bburl']. "/flashchat.php", $chatters);
eval('$home[$mods[\'modid\']][\'content\'] = "' . fetch_template('adv_portal_chatting_users') . '";');
?>
3.Add a new module using that php file and using that template