Log in

View Full Version : Smiley Info page question


Judith2
02-05-2014, 12:30 AM
Is there a way to disable the smiley Info page for guests?

http://www..................de/vbforum/misc.php?do=showsmilies

ForceHSS
02-05-2014, 01:18 AM
Need full url so i can do some tests

Zachery
02-05-2014, 10:23 AM
Something wrong with displaying the smilie page to guests?

If you really want, I believe this should work, create a new plugin, and set the hook to

misc_smilieslist_start


if (!$vbulletin->userinfo['userid'])
{
print_no_permission();
}


ForceHSS I don't see why you'd need the full url.

Judith2
02-05-2014, 01:15 PM
this is the full url -> http://www.animalhelpeurope.de/vbforum/misc.php?do=showsmilies

Zachery it works, thanks so much!