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.
Hi Support
If I think of a closed topic, I think of a topic where I can do nothing: no reply, no comment, no answer, no up or down voting, no nothing.
The case is that currently I can up/down vote and like/unlike any closed topic and their replies or answers in these wpforo forums.
For example I just up-voted on this closed topic in Q&A forum from "0" to "1":
In my case this is potentially problematic. Is there a way to avoid this and stop any more liking/voting on closed topics?
Hi @jorgew,
There is no option for this, but you can use js code for this purpose. Try this js code:
jQuery(document).ready(function ($){
if ($('.wpforo-open').length) {
$('.wpforo-post-voting').remove();
$('.wpforo-like').remove();
}
});