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.
This isn't really an issue, more of a plea.
Can you please find a way to enable voting to be suspended on certain comments or on certain articles?
You guys have been awesome in providing extra functionality on demand  in the past, so I'm hoping you can also pull this off!
it would make a huge improvement to this admin's working life!Â
Â
Â
Â
 Hi Sophie,
You can use the following hook-code:
add_filter("wpdiscuz_comment_list_args", function ($args) {
if (in_array($args["post_id"], [X,])) {
$args["components"]["vote.html"] = "";
}
return $args;
});
Just replace the red marked value with the comma-separated post IDs where you want to hide voting buttons.Â
The code should be put in the active theme functions.php file.Â
Â