Feature request: Removing notifications

Add the ability for old notifications on Discourse to be removed.
You may not want to see a certain notification again even if you already dismissed it.
What it could do is: there could be a “clear all” notification to clear all notifications or a “X” button to clear the current notification.
What this would do is permanently remove the notification or all notifications from the feed. I see this is not implemented in Discourse so this is why I am writing this suggestion.

2 likes

I’m not sure what you’re asking for exactly.

We already have a dismiss button to clear out all notifications:

Or are you saying you want this list to be made empty when you dismiss it?

2 likes

It’s more like an option to clear dismissed notifications, making the notification list empty. It could be a way to permanently hide the notification or to clean up old notifications that are no longer relevant if done in bulk. So as saying dismissing notifications already exists, but clearing notifications would give us more control over notifications in general.

2 likes

I see. I’m not sure that’s something that will be picked up soon, but you could very easily achieve something this with a one-line CSS addition:

.quick-access-panel {
  li.notification.read {
    display: none;
  }
}

This way, any read notification would disappear.

2 likes