Site logo

Archived topic

Hide all comments from all logged out users

3 replies · Started by Dominik on October 23, 2016

Viewing posts 1–4 of 4

Hi there,

It's possible, but takes a little coding.

First, copy the comments.php file into your child theme.

Then find this line:

// No direct access, please
if ( ! defined( 'ABSPATH' ) ) exit;

And put this after it:

if ( is_user_logged_in() ) :

Then at the very end of the file, find this line:

</div><!-- #comments -->

And put this after it:

<?php endif; ?>

Hope this helps :)

Awesome :)

This archived topic is closed to new replies.