Hi u all
i would like to know how do i make links to show to registered users only, but only in 1 of 3 forums...
let's see if i can explain my self...
i have 3 seccions in my forum
* - forum info
* - forum files
* - forum help
i would like that the links would be seen be everyone, except the links in 'forum files'... those i would like only to be seen by registered users..
how do i do that???
been trying:
// forum files = forum id 15
if ($forumid == 15) {return "Guests cannot view links. You must <a href='register.php'>register</a> to see links.";} else {...}
don't work
if ($forum[forumid] == 15) {return "Guests cannot view links. You must <a href='register.php'>register</a> to see links.";} else {...}
same here...
if ($vbulletin->forum[forumid] == 15) {return "Guests cannot view links. You must <a href='register.php'>register</a> to see links.";} else {...}
wrong again...
can someone help me??' Is this really possible???
Se7eN