As quick and easy as this may be, someone oughta post this in the vb2 full release forum. I'm sure a lot of people (like me) are looking for something that works well, and they may not check this forum too often
One quick additional thing though, I would like my guests to be able to view the forums they have access to, but registered users need to post at least once.
Would that be something like:
PHP Code:
if ($bbuserinfo['usergroupid']==2 AND $bbuserinfo['posts'] < 1 AND $thread['forumid'] == 4)
{
eval("standarderror(\"".gettemplate("error_notenouoghposts")."\");");
}
where usergroup 2 is my registered group?
--Nevermind, tried this and it works great