I’m just in the final stages of pimping out our new discourse forum.
On our group activity page, though, I noted that we do not have any information on ‘who’ has made the posts, which would be super useful (ideally the username and their title would be displayed)
An example can be seen right here in the official discourse board:
Name and title are displayed in that page only if the name has been entered in the user profile. Then in the site settings enable names must be enabled and the members of that group should fill in the name on their profiles. On our page for example, all except HAWK have name and title displayed. Indeed, Hawk has no name on her profile. I do not know if this is a bug or a desired choice, @tgxworld?
Just fill in the Avatar Flair Image field on the group setting page to view the logo.
That’s amazing @dax - thank you so much! Quick one more, enabling the logo also enables the logo beside each group member avatar within a topic reply. I’m trying to hide this via CSS only within topic replies, but struggling. Could you assist perhaps with that?
edit - solved with:
.topic-avatar .avatar-flair {
display:none;
}
update - the above didn’t solve at all! It actually hid the entire avatar from the post within a topic and not just the flair. (I’m not very CSS savvy)
You do not have to do anything with CSS, delete what you wrote. Instead, disable the group configuration Automatically set as primary group. Flairs are shown only on the primary groups.
It’s possible I’m crossing wires, I was very sleepy! So I messed up my example above, ignore the eve forums I linked.
So let me explain the set up and I’ll also show some examples of what I am looking to achieve (if it’s even possible)
We make video games and have different departments, we are running this forum as a closed test forum which is invite only.
So I have some default groups set up:
Developer
Quality Assurance
Community
Everyone with a company email is automatically added to the Developer group. The Developer group is “automatically assigned as primary” to anyone with the business email address. This makes sure they get appropriate trust levels and nifty flair I hacked in to the category overview without me having to do anything manually (which is nice!) (fig 1):
So all people with work emails are in the Developer group and have that set as their primary group (this triggers the above seen DEV flair). I manually assigned 4 people in to the Quality Assurance group and overrode that as their primary group (this triggers the above flair for QA), and just myself in to the Community group and this is my primary group (this triggers the above flair for CM).
In order to get the logo on the Developer Group Overview page as per the Original Post above, I have had to assign an avatar flair to the Developer group, only - this creates a flair on the avatar of each post the developers make (fig 2)
fig 2
What I am trying to achieve is hiding the avatar flair on the posts by the developers, but keeping it on the group overview page.
I thought it might be possible by hiding an element in CSS, but I ended up hiding the entire user avatar on their posts (and not just the flair).