Showing "OP" icon after username?

Hi all.

First post ever on discourse. I’m not sure if this has been discussed before.

I’m a user from one of the derivations of discourse and wish there were an icon for “OP” after their username. Something similar to R*ddit. In a long thread, we often lose who the original poster is and lose the poster’s viewpoint.

Thank you!

3 Likes

Yep, here’s one such topic: Request: Topic starter icon

You can find a few more below under “related”

Here’s a theme component that looks to do what you’re looking for here: Author Badge for Topic Posts

5 Likes

Thanks! I will look into that!

3 Likes

This should function properly with this.

.topic-post.topic-owner .topic-meta-data .username:after {
  content: "OP";
  font-weight: 600;
  padding: 3px 12px;
  font-size: 14px;
  border-radius: 6px;
  display: inline-block;
  margin-left: 6px;
  min-width: 20px;
  text-align: center;
  color: #fff;
  background: #0d8ddb;
}
3 Likes

(post deleted by author)