hashover-next
hashover-next copied to clipboard
Is there a way to not display the status of deleted comments?
After I deleted some comments in the database their status is still displayed in the thread. Is there a way to stop displaying the status of deleted comments?
Sorry for the long delay.
Unfortunately, there is not. You can hide them using CSS, though...
With something like this:
.hashover .hashover-deleted {
display: none;
}
If the comment had replies, they will be hidden as well.
This code will hide deleted comments that don't have replies:
.hashover .hashover-deleted:not(.hashover-has-replies) {
display: none;
}
I hope this helps.
Ther should be a way to permanently delete the comment because if you have 3 comments that got delete you don't see any comments, you need to click more to see first comment.