Just a small mod i slapped together for my forums. I also attached this mod save in a rar file and attached it at bottom of this post incase you want to save this to your collection of vb 3.7.x mods.
Before executing this edit, make sure you save/backup the ForumDisplay Templete Code on notepad or something just to be safe. You should do that with any templete mod edit regardless...just a wise habbit to get into doing every time you tinker. You must do this for each skin/theme you have installed in your forums although its a simple quick mod that only takes a few minutes to do.
You must have "show users browsing forums" enabled in Vbulletin Options/Forum Display Options (forumdisplay) Settings in order for this to work.
1. Go Into AdminCP/Style Manager/You Skin/Edit Templetes/Forum Display Templetes/
2. Open ForumDisplay Templete
3. And Look For: $navbar
4. PUT THE FOLLOWING CODE UNDER $navbar
Before executing this edit, make sure you save/backup the ForumDisplay Templete Code on notepad or something just to be safe. You should do that with any templete mod edit regardless...just a wise habbit to get into doing every time you tinker. You must do this for each skin/theme you have installed in your forums although its a simple quick mod that only takes a few minutes to do.
You must have "show users browsing forums" enabled in Vbulletin Options/Forum Display Options (forumdisplay) Settings in order for this to work.
1. Go Into AdminCP/Style Manager/You Skin/Edit Templetes/Forum Display Templetes/
2. Open ForumDisplay Templete
3. And Look For: $navbar
4. PUT THE FOLLOWING CODE UNDER $navbar
PHP:
<!-- Active Users in this Forum (and sub-forums) and Moderators -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<if condition="$show['activeusers']">
<td class="alt1"><div class="smallfont">Viewing This Section: $activeusers</div></td>
</if>
<if condition="$show['moderators']">
<td class="alt1"><div class="smallfont">$moderatorslist </div></td>
</if>
</tr>
</table>
</form>
<!-- End Active Users in this Forum (and sub-forums) and Moderators -->
<br/>