Quote:
Originally Posted by It's Damn Real!
Any way to hide the "Spam-O-Matic Statistics" from regular users? Ideally I'd like to have that information only viewable by Admins and Moderators.
|
yes in the stats render plugin at the top write this (first line of code)
PHP Code:
if(is_member_of($vbulletin->userinfo,5) OR is_member_of($vbulletin->userinfo,6))
{
//stats render code
at the bottom (last line)
that should do it