Giving a tag to the thread creator

Hey!

I’ve reading through some forums, and sometimes I get confused on who made the topic,
Now of course you could just scroll up and see the Name of the author who made the topic, but I personally think this will help some people and the looks of the forums aswell.

In the example above, It would be really nice to add like Topic Creator sign (where the red arrows point at)

I don’t see why it shouldn’t be added so I hope someone sees this!

5 Likes

You should probably make your title more descriptive.

But there is already a way to do it kinda with css.

2 Likes

I do personally agree there should be some sort of tag or indicator of who started the thread in question, yes.

1 Like

This doesn’t work with previewed replies, since Discourse doesn’t show the same metadata for topic owners in replies. You can patch it to not include any replies, but that leaves out replies by OP.

"patch"
.reply {
    --hide-replies: hidden;
}

.topic-post.topic-owner .names::after {
    content: "OP";
    color: #FF0000;
    padding: 0 5px;
    font-size: .875em;
    border: .75px solid;
    border-radius: 7.5px;
    align-self: flex-end;
    visibility: var(--hide-replies)
}

Classes included in reply previews vs the actual posts:
reply


actual post

3 Likes

Oh okay, but maybe they can work out something you never know

1 Like

If they wanted to add it to the site officially, they absolutely could. This is just referring to the unofficial CSS mod that incapaz suggested.

4 Likes