cheesegrits |
08-07-2006 02:50 AM |
Quote:
Originally Posted by snake-boy
I'm still trying to figure out how to allow everyone to see all the stats?
Any help please? Anyone?
-snake
|
I haven't tested this, as I'm running 3.6 and so have MicroStats disabled, but you could try the following:
In the Plugin Manager, find and edit the Microstats "global_complete" hook.
Find the line that says:
PHP Code:
$show['adminoptions'] = iif($vbulletin->options['vb_mstats_adminactive'] AND $vbulletin->userinfo['usergroupid'] == 6, true, false);
... and change it to ...
PHP Code:
// $show['adminoptions'] = iif($vbulletin->options['vb_mstats_adminactive'] AND $vbulletin->userinfo['usergroupid'] == 6, true, false);
$show['adminoptions'] = 1;
You may or may not have formatting issues because of the "style_count" stuff, but it's worth a try, if you really really want to do this. Personally I don't recommend it, but it's your board.
To undo this change, simply delete the second line above, and remove the comment (//) from the original line.
-- hugh
|