• Resolved sousouch

    (@sousouch)


    Hi,

    Thanks for this great plugin.

    How to modify the weight of the notes according to the role of the users?

    For example, so that the impact of an administrator’s rating is greater than a contributor.

    Thanks in advance

    • This topic was modified 5 years, 4 months ago by sousouch.
    • This topic was modified 5 years, 4 months ago by sousouch.
    • This topic was modified 5 years, 4 months ago by sousouch.
    • This topic was modified 5 years, 4 months ago by sousouch.
Viewing 1 replies (of 1 total)
  • Plugin Author Gemini Labs

    (@geminilabs)

    Reviews are not weighted, they are displayed latest to oldest. However, pinned reviews are displayed first.

    If you would like to automatically pin reviews that are submitted by an administrator, you can do this:

    add_filter('site-reviews/defaults/rating', function (array $defaults) {
        if (current_user_can('administrator')) {
            $defaults['is_pinned'] = true;
        }
        return $defaults;
    });
Viewing 1 replies (of 1 total)

The topic ‘Note weight’ is closed to new replies.