Identifying users above messages..?

Hi, I’m starting to see a lot more of this on top of users who are new or just spoke after two years or so. I am personally not a fan of it, I find it distracting while browsing the sea of replies with this when I just want to read replies. Is this a new thing or has this been there for a while? If it’s been there, does anyone know how to remove it? If it’s a new thing, why is this a thing? Also, anyone else experiencing this too?

1 Like

There isn’t a way to remove it locally as far as I’m aware. It’s a Discourse setting, not a user setting. You can remove it with custom CSS via Stylus or something, but obviously that’s not ideal. Style to hide it:

.returning-user, .new-user {
	display: none;
}

Of course, this is a bit hacky, and it still leaves a blank gap. If it helps, it helps though, I guess.

Example of the gap:

Edit: Changed the rule to use display: none instead of visibility: hidden.

4 Likes

Is this a regular thing? It seems to be new after getting promoted and I never saw it when I was a member.

With Discourse admins can actually configure who can see returning user notice tl (literal name of the setting), so if you only started seeing this when you got promoted to tl2, then it is likely that the setting is configured to only show for tl2+ users.

Edit: by default this is set to tl2, so it makes sense if it wasn’t configured at all.

3 Likes

I can’t view it on a TL0 account, so I guess that would be the case. I can’t see why that would be, though.

3 Likes

According to the discourse announcement, this is how you’re supposed to hide it, and it might get rid of the gap too.

.post-notice {
  display: none;
}
3 Likes

I should’ve done display: none instead of visibility: hidden, which I’ve fixed, but I don’t think you want to hide all post notices. That also hides staff notices saying stuff like “Official response from Roblox staff”

4 Likes

…oops. i forgot those existed.

.post-notice.new-user {
  display: none;
}

.post-notice.returning-user {
  display: none;
}

.post-notice.old {
  display: none;
}

The post also provides methods for only hiding some notices. new-user and returning-user are probably what you’re looking for.

edit just realised this is basically the same as what you were doing before, but the difference being the display: none and keeping the post notice prefix

2 Likes