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

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

Issue [Solved] Post Rating reset restriction

4 Posts
2 Users
2 Reactions
907 Views
Posts: 1
Topic starter
(@injanebhamed)
New Member
Joined: 3 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: 8075
 Asti
Support
(@asti)
Illustrious Member
Joined: 8 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: 8 years ago

Illustrious Member
Posts: 8075

@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: 8 years ago

Illustrious Member
Posts: 8075

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: