Disable Comment For...
 
Share:
Notifications
Clear all

[Solved] Disable Comment Form

3 Posts
2 Users
0 Likes
503 Views
Posts: 47
Topic starter
(@aaronmckeon)
Trusted Member
Joined: 2 years ago

I built the following code using another forum discussion.  However, the original code was developed so that the reply form would still be visible.  Can anybody tell me how to modify the code so that it also hides the reply comment form?  I want this code to eliminate ALL commenting for users that meet the specified criteria.  Thanks for any help.

add_filter('wpdiscuz_form_render', 'pp_hide_comment_form', 10, 3);
function pp_hide_comment_form($output, $commentsCount, $currentUser) {

// specify list of tags that trigger loss of commenting privileges
$disallowed_tags = array('Email-Status-invalid', 'Email-Status-spamtrap', 'Email-Status-do_not_mail');

// hide the comment form if user has a disallowed tag
if (!empty($currentUser->ID) && wpf_has_tag($disallowed_tags)) {
$output = preg_replace('~<div class="wpd-form[^"\']+wpd-main-form-wrapper[^>]+>.*?(<div id="wpdiscuz_hidden_secondary_form")~is', '$1', $output);
}

return $output;

}

Original thread for reference: https://wpdiscuz.com/community/troubleshooting/disable-main-form-only-allow-reply/#post-10130

2 Replies
Posts: 47
Topic starter
(@aaronmckeon)
Trusted Member
Joined: 2 years ago

Follow-up: I was able to fix this by simply changing the $ouput to an alert message that informs the user their commenting ability has been disabled.

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

Illustrious Member
Posts: 7056

@aaronmckeon,

Thank you for letting us know. Glad to hear that the issue is solved. 

We're going to mark this thread as resolved. Feel free to open a new topic if you have further questions.

Share: