PDA

View Full Version : Forum Leaders (showgroups)


Fapathy
05-28-2008, 04:28 PM
How do I make it unavailable to guests?

I have a few of my own ideas modifying the showgroups.php myself but I want to know what you guys think before I do it.

Princeton
05-28-2008, 07:23 PM
you can disable it if you like via vbulletin options / Enable Forum Leaders

to disable only to guest you will have to create a custom plugin using hook 'showgroups_start'

if ($show['guest'])
{
print_no_permission();
}
not tested