May 07, 2025 1:13 pm
Howdy,
just discovered WPDiscuz and installed and am delighted so far! I've got a somewhat strange question and doubt this will be possible. I'll have some 50+ categories and want to allow comments only in a few of them. Found this snippet here to deal with this
add_filter("is_load_wpdiscuz", function ($load, $post) {
if (has_category([102,105], $post)) {
$load = false;
}
return $load;
}, 10, 2);
Perfect .. BUT ... this way I also loose the rating feature which is not desired. Is there a way to only display the rating but not the comments?
Thx for any hints on that.
1 Reply
May 10, 2025 9:44 am
Hi,
I'm sorry, but there are not any hooks we can provide you.
Suggestion: You can hide the comment form using CSS or JS code.Β