
09-19-2006, 02:43 PM
|
|
|
Join Date: Jul 2004
Location: Bangkok
Posts: 102
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Thanks hugh! This DID work perfectly  It's now displayed to all users, regardless of usergroup.
-snake
Quote:
Originally Posted by cheesegrits
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
|
|