Indicator next to topic title to denote specific Group participation

Hi everyone!

For the forums I’ve been setting up, the developers of the product are going to be active participants in topics; as such, I’d like to make an easy-to-notice callout next to the Topic title (in the topic table view, not necessarily in the thread itself) to show the company icon in order to help other users identify when anyone from within the developer group has contributed to a thread. Blizzard does this on their forums and I think it’s awesome!

Example of Blizzard forums (1st post):

I think I’m familiar enough with CSS to understand how to put the icon before the text, however I’m not sure how to set it up where the CSS “knows” that a user in the “developer” group has posted in a topic to trigger the icon to show. Has anyone else done something like this or have some leads on how I can do it?

Mock-up of what I’d like to show (2nd post):

Thanks so much for any help/tips!

6 Likes

I don’t think there’s any way to do this at the moment. We’d need a dedicated field that is populated on each topic to do this in a way that doesn’t kill performance.

I agree with the request, though, because I think it’s useful to a community.

5 Likes

Awesome, thanks for the consideration! :blush:

The list doesn’t have any way to specifically target a Group.

But there may be a suitable work-around.

If a Category is specific to a Group, the Category could be targeted.

Rows have “first, last, frequent” poster information. So member names could be targeted.

A Group-specific Tag could be added to a topic and the Tag could be targeted.

I’m not sure about how well CSS could be used since there is no such thing as a “parent selector” but maybe someone better at CSS could figure out how to do it.

And I guess some JavaScript code would be able to do some magic, but I fear it would be quite a drain on resources running on every topic in a list.

In the Discourse hosted software help forum I most participate in, there is a manually assigned badge for employees of the software company. The employees set this as their “title” in preferences. It then appears next to their avatar in any posting. Note it does NOT appear in the one line topic summary when part of a category, new, unread, or latest list.

Might this suffice for you?

3 Likes

Hi Steven!

Thanks for the suggesiton; could you link me to a post where this is applied so I could check it out? In our instance, we mostly need this to show up next to the Topic name so from a very high-level scan, users can easily pick out when a thread has a developer response within (rather than needing to drill down into the post and then maybe come across the developer post itself).

Here’s an example:


The badge doesn’t appear in the preview above so you’ll have to click through.

Based on your need for a “high level” indicator, I now doubt this will fill your need.

I’m fairly certain it won’t

Categories can belong to a Group
Members can belong to a Group
Topics belong to a Category

It might be fairly easy and not be much of a resource hit to associate a Group to a Topic based on the topic creator.

But what is wanted is to associate a Group to a Topic based on topic participants.

In effect this means that every time any topic gets a reply, code would need to find out what if any groups the poster belonged to, and then if applicable associate the group(s) to the Topic so that it could be styled in topic lists.

1 Like