Muting a user doesn't hide their posts?

Is there a reason muting a user doesn’t hide their posts? There should be a way users can hide content from other users they don’t want to hear from.

2 Likes

This is as designed per
https://meta.discourse.org/t/ability-to-block-or-mute-another-user/6001/67?u=cpradio

3 Likes

I don’t buy the “rabbit hole” excuse. Other forums have solved this problem simply: keep the muted/blocked user’s posts/threads but hide all of their text. Some forums even treat muted/blocked users’ posts/threads with spoiler tags.

If you feel it would be an easy task, you should write a plugin. Not many want this as a feature, but there have been a few and they should appreciate it.

2 Likes

You can do this with a local CSS customization:

.topic-post article[data-user-id="26487"] .topic-body {
  max-height: 70px;
  overflow-y: scroll;
  opacity: 0.2;
}
2 Likes