• Hello,

    Please how can I hide or remove the rating widget completely from guests ([ratemypost]). Only logged in users should see the rating widget.
    Please I dont want to use css to hide but php.

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Blaz K.

    (@blazk)

    Hi there,

    You can use the rmp_display_rating_widget filter. More about this in the documentation.

    Regards,
    Blaz

    Thread Starter teeboy4real

    (@teeboy4real)

    This worked

    function wp_show_rating_widget() {
      if ( !is_user_logged_in() ) {
        return false;
      }
      return true;
    }
    add_filter( 'rmp_display_rating_widget', 'wp_show_rating_widget' );

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Hide rating widget completely from guests’ is closed to new replies.