May 04, 2019 4:15 am
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?
4 Replies
May 04, 2019 8:20 am
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();
}
});