Quote:
Originally Posted by jasculs
That worked except it blocked the links for everyone, not just guests. Anyway I can add a condition or something so it just blocks it for unregistered users only? Thanks for the help.
|
Here, FIND:
PHP Code:
if ($vbulletin->options['hlfg_global'])
REPLACE with:
PHP Code:
if ($vbulletin->options['hlfg_global'] && !$vbulletin->userinfo['userid'])
That should do it.