• Is it possible to make it so people only see their own comments and reviews? I want user comments and reviews to be private but to the admin to see all comments and reviews. Do you know if this is possible?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author MyThemeShop

    (@mythemeshop)

    Hello,

    Kindly try appending the following to your theme’s functions.php

    
    add_action( 'pre_get_comments', function( $query ) {
        if ( is_admin() ) return;
      $query->query_vars['author__in'] = get_current_user_id();
    } );
    

    Hope that helps.

    Thread Starter clorange

    (@clorange)

    That gets me close but not quite there. The comments a private but the star ratings are still based upon what all the users input

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Personal reviews’ is closed to new replies.