in inc_top.asp you could add this around the link to the members.asp page
around line 366 you'll find this code (on a 3.3.03 forum)
Response.Write " |" & vbNewline & _
" <a href=""members.asp""><acronym title=""Current members of these forums..."">Members</acronym></a>" & vbNewline & _
" |" & vbNewline & _
" <a href=""search.asp""><acronym title=""Perform a search by keyword, date, and/or name..."">Search</acronym></a>" & vbNewline & _
" |" & vbNewline & _
" <a href=""faq.asp""><acronym title=""Answers to Frequently Asked Questions..."">FAQ</acronym></a>" & vbNewline
Change it to
if mLev > 0 then
Response.Write " |" & vbNewline & _
" <a href=""members.asp""><acronym title=""Current members of these forums..."">Members</acronym></a>" & vbNewline
end if
Response.Write " |" & vbNewline & _
" <a href=""search.asp""><acronym title=""Perform a search by keyword, date, and/or name..."">Search</acronym></a>" & vbNewline & _
" |" & vbNewline & _
" <a href=""faq.asp""><acronym title=""Answers to Frequently Asked Questions..."">FAQ</acronym></a>" & vbNewline
The only problem with doing this is it wont stop them from just going to the members.asp page directly. If you want to prevent that also then you could add similar code to the top of members.asp i.e
if mLev > 0 then ' would put this at the top of members.asp
.
..
...
.... remainder of page here
...
..
.
else ' this goes right at the end of the page
Response.Redirect "/forum" ' redirect to front page
end if
www.daoc-halo.com