Oh yikes, and I'm mixed up between vb4 and vb3, sorry about the stuff regarding registering!
You said that what I'm looking for is in the navbar, but I don't see anything different in the navbar when I click on one of the forums from the page you link to. What should I be looking for exactly?
Another thing..... when I've had a option field where I input a row of forumids... x,y,z and then I wanted to use them like you are (if in_array etc...), I've had to first explode it in a plugin...
ie. I have some forums set in option "verify_forums" (ie. 12,13,14)
In my plugin, I have
PHP Code:
$verifyforums = explode(",", $vbulletin->options[verify_forums]);
Then in my template, I used:
HTML Code:
in_array($threadinfo[forumid], $verifyforums)