Thanks for this, quick question, if I want to add the words "Color Legend:" at the bottom of the forums page, I assume I would need to edit the plugin code:
Code:
if (THIS_SCRIPT == "index" and $vbulletin->options['ugl_forumsindex_onoff'])
{
$activeusers2 .= '<br />';
$userbuls = split(',', $vbulletin->options['ugl_display_order']);
foreach($userbuls AS $userbul) {
$activeusers2 .= $vbulletin->usergroupcache["$userbul"]['opentag'] . '? '.$vbulletin->usergroupcache["$userbul"]['title'] . $vbulletin->usergroupcache["$userbul"]['closetag'].' ';
}
$activeusers = ''.$activeusers2 .'<br /><br />'. $activeusers;
}
I've tried to put it in a couple of places but it is either not in alignment or it completely stops the legend from showing. Thanks.