mLev on forum topic - Help - Posted (1538 Views)
Junior Member
phoenixtaz13
Posts: 129
129
hello!... Good day to all.... :)

how can i restrict guest from viewing topics content?...
what i have in mind is that guest can see posted title topics, but once the guest clicks
posted title topics, a message will appear saying "you must register or login to view the content of the topic" and then the guest will be redirected to the login page or main forum page.
has anyone done this?....
thanks in advance... :)


 Sort direction, for dates DESC means newest first  
 Page size 
Posted
Average Member
SiSL
Posts: 671
671
With default Snitz, you can't do that topic by topic but forum by forum.
For fast solution, you can open a forum that allows only Members, and move topic into that forum.
Posted
Junior Member
phoenixtaz13
Posts: 129
129
hi SiSL, thanks for ur time... :)

with all do respect, not to offend u in any way, im aware of the forum AUTH TYPE.... lets say i'm one of the guys who wants to prevent guest from viewing the title topic content instead of forum by forum, to get me started what files should i look into?.... where in the files i should be looking into?... how would i go thru w/this?....
i want to display topics that are being posted in that forum, but preventing guest from viewing posted topic's content in that forum if they are not registered.
hope u can help me on this, thanks for ur time, greatly appreciate it....
Posted
Average Member
SiSL
Posts: 671
671
You can simply add something like in topic.asp such as following just below include files

if mLev < 1 Then
Response.Write "You have to be registered to see topics content"
WriteFooter
Response.End
End If


 
You Must enter a message