I tried removing plugins and css one by one. If I disable the MD component again the settings button comes back
Avatar section on homepage looks good
Avatar section is aligned to the left in the subcategory section
How can we find a solution?
I agree that this activity column should have a better setting.
Iāve tried an update of the component, check the latest version and let me know if itās better.
The only issue could come from long username, Iāll try to find a better way to do it if necessary
GitHub - VaperinaDEV/discourse-custom-user-column
This component worked smoothly, there is no problem now
Thanks to the Sam Simple Theme, I was able to update this theme component to the new glimmer topic-list system.
I tried to do it alone but it was a disaster, but it works great now. You shouldnāt have a depecrated alert on this component anymore.
Iāll work on the mobile version soon.
Thanks very much Steven for this component, I really like the idea of Samās Simple Theme but implemented as a more lightweight theme component. My users strongly prefer this layout compared to the Discourse default with only avatars that show no text for the username.
But the only problem is that this Author + Latest Poster paradigm sort of falls apart in the PM topic list, where we do need to see all the participants at a glance. For example, here this PM is actually to a different user, but since I started the PM thread and am also the most recent one to reply, the other PM participant is not visible:
Is there any way to add another column with a comma separated list of avatars + usernames in the PM topic list view?
I AFAIK, Iām not sure there is a way to apply a change only in the user message topic list page. They use the same source for the columns. I can explore but I canāt guarantee itās doable
Hi Steven, thanks a lot for the reply. The way I made it work before the Glimmer migration thing was by adding the additional column for the postersā usernames to all the topic list views, and then using CSS to hide it everywhere except the PM page:
.navigation-category .topic-list .topic-list-data.posters,
.navigation-topics .topic-list .topic-list-data.posters,
.navigation-filter .topic-list .topic-list-data.posters,
.user-activity-page .topic-list .topic-list-data.posters
{
display: none;
}
Yes but with the new version we deleted the posters column directly in the initializers.
The best way to do it for you would be to fork the component in your github and change delete the line 48 in this file
This way, to column will still exist in your forum, and with css you can hide it in the right pages
In the default version, I think itās best to keep the column deleted, this is way cleaner.
Ok that might work, thanks for the tip. Apart from this Glimmer migration has the Discourse base been fairly stable, not a lot of changes required for this component?
I donāt think you need to change a thing in the css, this part of Discourse has been pretty stable