Limited Support
Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.
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.
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.Â