The effects of alcohol on sustanon 250 leucine for – real weight loss & bodybuilding benefits?
Post Rating reset r...
 
Share:
Notifications
Clear all

Issue [Solved] Post Rating reset restriction

4 Posts
2 Users
2 Likes
424 Views
Posts: 1
Topic starter
(@injanebhamed)
New Member
Joined: 2 years ago

Hi

First of all, thanks for the most useful lovely customizable plugin ever.

I just noticed a misspolicy about <reset post rating> option:

All wordpress Roles can reset rating in post edit page

and thats not pleased!

I, as an administrator, dont want my Authors or even Editors can be able to reset post ratings.

Hope you add an option to restrict this, or at least Hide it from <screen options> in post edit page.

Thanks.

3 Replies
Asti
Posts: 7151
 Asti
Support
(@asti)
Illustrious Member
Joined: 6 years ago

Hi,

I'm going to ask the developers if there is a solution we can provide you. I'll update the topic once I get news for you.

2 Replies
Asti
 Asti
Support
(@asti)
Joined: 6 years ago

Illustrious Member
Posts: 7151

@injanebhamed,

Please use the hook code below:

add_action('init', 'resrict_post_ratings_reset');

function resrict_post_ratings_reset() {
    $user = wp_get_current_user();

    if (!$user || empty($user->roles) || !is_array($user->roles)) {
        return;
    }

    $wpdiscuz = wpDiscuz();

    if (!$wpdiscuz) {
        return;
    }

    if (in_array('author', $user->roles)) {
        remove_action('add_meta_boxes', [$wpdiscuz->helper, 'addRatingResetButton'], 10);
    }
}

Using the same logic you make for other user roles:

if (in_array('author', $user->roles)) {

Put the hook code in the WordPress active theme functions.php file: https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/

Β 

Asti
 Asti
Support
(@asti)
Joined: 6 years ago

Illustrious Member
Posts: 7151

We have not received a reply from you for over a couple of weeks, therefore we will be closing this topic. Please create a new one if you require any additional help.

Thank You!

Share: