• Hi all,

    I’m searching for a way to allow reading comments to the blogs just to registered users. Is it possible ? Actually I installed Subscriber plugin but comments are free readly from anyone.

    Thanks
    Antonio

Viewing 2 replies - 1 through 2 (of 2 total)
  • you can edit the comments.php of your theme adding this conditional:
    put this before the part where the comments are displayed:

    <?php
    global $user_ID, $user_identity;
    get_currentuserinfo();
    if ($user_ID) {
    ?>

    put this after :

    <?php
    }
    ?>

    Thread Starter guastatore

    (@guastatore)

    Hi lobsterman, it seems to work !! Great 🙂

    Thank you very much.
    Antonio

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Allow reading comments to registered users’ is closed to new replies.