if you want to stop anyone in the "newbie" group, then you can edit the page to stop that group.
there should already be code to stop guests from viewing the page, something like this:
if intGroupID = 2 then response.redirect(...) end if |
or
if lngLoggedInUserID = 2 then response.redirect(...) end if |
All you would do is alter the code like so:
if intGroupID = 2 or intGroupID = 4 then response.redirect(...) end if |
Im not sure the ID number for the Newbie group, but I'll post the exact code tonight when I'll have access to the WWF code.