hashover-next icon indicating copy to clipboard operation
hashover-next copied to clipboard

Is there a way to not display the status of deleted comments?

Open btayalew opened this issue 7 years ago • 2 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?

btayalew avatar Aug 26 '18 23:08 btayalew

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.

jacobwb avatar Aug 22 '19 21:08 jacobwb

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.

jcubic avatar Apr 08 '20 09:04 jcubic