Unfortunately assigning Comment Moderator to a user also grants them permission to edit posts and pages…so completely defeats the purpose. Will there be a fix for this?
]]>Hello! this plugin has an update alert, I wonder if it will be updated in the future?
Alert is:
This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Many thanks!
]]>please show me how to:
–
1 – how to allow duplicate comments for certain words and also for certain user-roles
..
2 – how create a comment moderator role ..that can decide users/user-roles that should and should NOT be able to comment on a particular role (this moderator role should also be able to delete a comment permanently ..i.e by ‘permanently’ i mean the deleted comment should NOT be moved to bin.) ALSO this comment moderator-role should be the only role that is able to reply messages from the front-end i.e NO OTHER ROLE APART FROM THE ‘COMMENT-MODERATOR ROLE’ should be able to see the ‘REPLY BUTTON’
If I install this, can I arrange that people that I assign the role of ‘moderator’ will receive E-mail notifications of pending comments? Preferably notifications that include the full-text of the comment?
If I can do this, it will have two advantages. First of all — it will allow moderators to actively participate in their role without having to check my blog several times a day. Second of all — if the full-text of the comment is included in the notification E-mail, that can be useful in case a rejected comment needs to be saved for evidence and/or reported to the police.
I ask this question because the entire reason I’m looking for a plug-in of this sort is that my experience as a blogger tells me that extreme harassment by comments, even death-threats, are a very real thing — but I still want to allow comments on the blog I’m in the process of launching.
]]>How do I limit the scope of Comment moderator User to only his comments? as it is, a Comment Moderator User can modify all comments.
]]>hi,
the plugin works great out of the box, there is only one issue. Menus of the custom post types are removed. I found the culprit. It is the wpsite_comment_moderator_remove_menu() method inside of wpsite-comment-moderator.php . I fixed/hacked it with the following alteration:
static function wpsite_comment_moderator_remove_menu() {
$user = wp_get_current_user();
if (!empty($user) && in_array('comment_moderator', (array) $user->roles)) {
remove_menu_page( 'edit.php' );
remove_menu_page( 'tools.php' );
$post_types = get_post_types('', 'names');
foreach ($post_types as $post_type) {
// my hack
if($post_type == 'my_removed_menu_post_type') {break;}
remove_menu_page("edit.php?post_type=$post_type");
}
}
}
I didn’t really dig deep into why edit.php and tools.php have to be removed and only hacked the solution.
Is there any way you could look into the matter and find out a more elegant solution.