Slowhand
(Slowhand)
July 31, 2024, 8:37pm
1
Is it possible to disable the Topic Information a the bottom of the threads? It is definitely not useful in our particular forum. I’ve done a survey of our Mods & frequent users and no one cares for it.
Having it at the top of each thread is fine, no one really uses it.
1 Like
Don
July 31, 2024, 9:14pm
2
Hello
It’s possible with CSS.
Common / CSS
.topic-map.--bottom {
display: none !important;
}
The code above will hide topic map on both (Topics and PMs) if you want to keep it on PMs then you can target separately only the Topics.
body:not(.archetype-private_message) {
.topic-map.--bottom {
display: none;
}
}
2 Likes
Slowhand
(Slowhand)
July 31, 2024, 9:15pm
3
Thank you, I’ll get that to an admin.
1 Like
Don
August 3, 2024, 9:31am
4
As I see, there is a PR that will make it available with a site setting after it’s merged.
discourse:main
← jancernik:topic-map-minor-fixes
opened 10:02PM - 02 Aug 24 UTC
- Removes the left padding for the bottom topic map to be better aligned with th… e rest of the UI, especially noticeable when having topic timers or other small-action posts.
- Centers the button to show more links
- Fixes padding consistency in the top replies menu
- Fixes view count text wrapping when it's a lone stat
- Adds two site settings to fine-tune the visibility of the topic map: `show_bottom_topic_map` and `show_topic_map_in_topics_without_replies`
3 Likes
jancernik
(Jan Cernik)
August 13, 2024, 12:40pm
5
This PR is merged now.
You can use the site setting show_bottom_topic_map
to toggle its visibility.
4 Likes
jancernik
(Jan Cernik)
Closed
August 17, 2024, 1:41pm
6
This topic was automatically closed after 4 days. New replies are no longer allowed.