PDA

View Full Version : Mini Mods - vbadvance Separate Staff and members in User online mod


WarLion
09-05-2007, 10:00 PM
vbadvance Separate Staff and members
in User online mod

*******************************************
This mod come from the idea of gio~logist (https://vborg.vbsupport.ru/member.php?u=57621)
from his modification all the credit go to him
*******************************************

What do you need you need to install this modification first
Separate Staff In User's Online (https://vborg.vbsupport.ru/showthread.php?t=139357)
if you have problems with this mod check the post #22 (https://vborg.vbsupport.ru/showpost.php?p=1186511&postcount=22)

then this mod is for vbadvance for the module user online
open your file onlineusers.php, locate in forum/modules/

find this code

eval('$activeusers .= "$comma ' . fetch_template('forumhome_loggedinuser') . '";');
$comma = ', ';
and remplace with

if($loggedin['usergroupid'] == '5' OR $loggedin['usergroupid'] == '6' OR $loggedin['usergroupid'] == '7'){

eval('$activeusers_staff .= "' . fetch_template('forumhome_loggedinuser') . ', ";');
$activeusers_staff = substr($activeusers_staff, 0);

} else {

eval('$activeusers_members .= "' . fetch_template('forumhome_loggedinuser') . ', ";');
$activeusers_members = substr($activeusers_members, 0);

}
save it

edit the next template adv_portal_onlineusers
and remplace all with this

<tr>
<td class="thead"><span class="smallfont"><phrase 1="$numberregistered" 2="$numberguest">$vbphrase[x_members_and_y_guests]</phrase></span></td>
</tr>
<tr>
<td class="thead"><span class="smallfont">Staff on-line:</span></td>
</tr>
<tr>
<td class="$altbgclass"><span class="smallfont">$activeusers_staff</span></td>
</tr>
<tr>
<td class="thead"><span class="smallfont">Members on-line:</span></td>
</tr>
<tr>
<td class="$altbgclass"><span class="smallfont">$activeusers_members</span></td>
</tr>
<tr>
<td class="$bgclass"><span class="smallfont"><phrase 1="$recordusers" 2="$recorddate" 3="$recordtime">$vbphrase[most_users_ever_online_was_x_y_at_z]</phrase></span></td>
</tr>
save it and check your site

WarLion
09-06-2007, 03:23 AM
reserved

SuperTaz
09-07-2007, 04:10 AM
I'll have to check this out when I get home.

princeedward
09-07-2007, 10:12 AM
nice one...installed...work like a charm to my vB 3.6.8....thanks

69534

best regards...

:p

softvnzla
01-03-2008, 11:48 PM
nice installed

desmomax
04-17-2013, 11:33 AM
how can i add usergroup in order to see in staff? I added few more new usergroup with mod privileges and i'd like to show in staff .
thanks