The effects of alcohol on
sustanon 250 leucine for – real weight loss & bodybuilding benefits?
Issue [Solved] Post Rating reset restriction
How-to and Troubleshooting
(@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.
(@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.
(@asti)
Joined: 8 years ago
Illustrious Member
Posts: 8196
Oct 25, 2022 7:18 am
@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)
Joined: 8 years ago
Illustrious Member
Posts: 8196
Nov 11, 2022 7:55 am
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!