Quote:
Originally Posted by lanc3lot
Hello...Can the links be hided also from users that they havent activated their account? (and so only registered users can see them)
Thnx in advance
|
Yes, you can change
PHP Code:
if ($bbuserinfo[userid] != 0)
{
to
PHP Code:
if ($bbuserinfo[userid] != 0 OR $bbuserinfo[userid] != X)
{
and replace X by the usergroup from which you want to hide the links aswell.
Not sure whether this works or not, but you can try.