View Full Version : Let Registered Users only view comments


jhoulston
02-09-2008, 06:15 PM
Is it possible to allow only registered users to view comments? I found the option to stop unregistered users from commenting but wondered if I could limit comment views to only those registered?

Cheers,

james.

Jafo
02-10-2008, 03:00 PM
In the show_alumni template you will probably have to add some code like so:


if ($user->level != 99) {
?>

##Show all comment related code

<?php
}
?>

I am assuming you know how the <?php and ?> tags work..