Hi
I'm looking for a way to let guests see the thread(titles) of a specific forum but not be able to access the contents of the threads / read them.
A bit like a preview of all the things in that forum, if you will?
cheers,
Zwiebel
Edit: I was thinking. Could I make just one of these simple "User logged out" things and put a css rule for pointer event none for the specific title class or Javascript that does the same?
Edit2: I tried
and it didn't work :<
I'm looking for a way to let guests see the thread(titles) of a specific forum but not be able to access the contents of the threads / read them.
A bit like a preview of all the things in that forum, if you will?
cheers,
Zwiebel
Edit: I was thinking. Could I make just one of these simple "User logged out" things and put a css rule for pointer event none for the specific title class or Javascript that does the same?
Edit2: I tried
- Code:
<!-- BEGIN switch_user_logged_out -->
$(document).ready(function() {
if (document.location.pathname == "/the-specific-board-url") {
$('a.topictitle').click(false);
}
}
<!-- END switch_user_logged_out -->
and it didn't work :<