Quote:
Originally Posted by HolyKiller
3.8 and all OK.
But maybe a option "Show the legend: TOP or BOTTOM" of the Who Is Online will be perfect.
I mean something like a phpBB. Legends UNDER the online-users list.
THX in advance
Holy
|
Quote:
Originally Posted by Nightmare-GameZ
I have a question. Well some sort of a request anyways. Can this be moved below the online list? It should look like this.
|
I did this by changing this mods plugin
Go to > AdminCP > Plugin & Products > Plugin Manager > Product : Usergroup Color Bar > Usergroups color bar > Edit >
Plugin PHP Code
And replace ALL with the following...
Code:
if (THIS_SCRIPT == "index" and $vbulletin->options['ugcb_onoff'])
{
$activeusers2 .= '<br />';
$userbuls = split(',', $vbulletin->options['sirala']);
foreach($userbuls AS $userbul) {
$activeusers2 .= $vbulletin->usergroupcache["$userbul"]['opentag'] . '• '.$vbulletin->usergroupcache["$userbul"]['title'] . $vbulletin->usergroupcache["$userbul"]['closetag'].' ';
}
$activeusers = $activeusers .'<br />'. $activeusers2;
}
Mine now looks like this.....