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.

