If you are an admin and want it so only you can see the statistics link on the navbar ad this code to the navbar template as opposed to the code shown in the text file. (add in the same location)
Quote:
<if condition="is_member_of($vbulletin->userinfo, 6)"><td class="vbmenu_control"><a href="statistics.php$session[sessionurl_q]">$vbphrase[statistics_statistics]</a></td></if>
|
If you want it so only the admin and mods can see use this code:
Quote:
<if condition="is_member_of($vbulletin->userinfo, 6, 7)"><td class="vbmenu_control"><a href="statistics.php$session[sessionurl_q]">$vbphrase[statistics_statistics]</a></td></if>
|
This works with the default settings for mod and admin usergroup ID's. If you want to add additional usergroup id's just edit this part of the code
Quote:
($vbulletin->userinfo, 6, 7)
|
Just add the user group id's in this format 6, 7, 2, 3, 4
I figured I would write this since I myself used this code so only I could see statistics on the navbar. I did not want my members seeing them but I still wanted easy access through the navbar.
Note: I know you can restrict certain usergroups from viewing the statistics page itself but I though it would be annoying as a normal member to see statistics link in the navbar but be restricted from viewing the page.