# Topic information at the bottom of threads

**URL:** https://meta.discourse.org/t/topic-information-at-the-bottom-of-threads/319546
**Category:** Support
**Tags:** topic-map
**Created:** [July 31, 2024, 8:37pm UTC](https://meta.discourse.org/t/topic-information-at-the-bottom-of-threads/319546 "2024-07-31T20:37:05Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![Slowhand](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/slowhand/32/57436_2.png) [@Slowhand](https://meta.discourse.org/u/Slowhand)
#### Post date: [July 31, 2024, 8:37pm UTC](https://meta.discourse.org/t/topic-information-at-the-bottom-of-threads/319546/1 "2024-07-31T20:37:05Z")

</div>

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.

---

<div class="post-metadata">

### Author: ![Don](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/don/32/228726_2.png) [@Don](https://meta.discourse.org/u/Don)
#### Post date: [July 31, 2024, 9:14pm UTC](https://meta.discourse.org/t/topic-information-at-the-bottom-of-threads/319546/2 "2024-07-31T21:14:28Z")

</div>

Hello 👋

It’s possible with CSS.

Common / CSS

```scss
.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.

```scss
body:not(.archetype-private_message) {
  .topic-map.--bottom {
    display: none;
  }
}

```

---

<div class="post-metadata">

### Author: ![Slowhand](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/slowhand/32/57436_2.png) [@Slowhand](https://meta.discourse.org/u/Slowhand)
#### Post date: [July 31, 2024, 9:15pm UTC](https://meta.discourse.org/t/topic-information-at-the-bottom-of-threads/319546/3 "2024-07-31T21:15:52Z")

</div>

Thank you, I’ll get that to an admin.

---

<div class="post-metadata">

### Author: ![Don](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/don/32/228726_2.png) [@Don](https://meta.discourse.org/u/Don)
#### Post date: [August 3, 2024, 9:31am UTC](https://meta.discourse.org/t/topic-information-at-the-bottom-of-threads/319546/4 "2024-08-03T09:31:02Z")

</div>

As I see, there is a PR that will make it available with a site setting after it’s merged. 🙂

[https://github.com/discourse/discourse/pull/28215](https://github.com/discourse/discourse/pull/28215)

---

<div class="post-metadata">

### Author: ![jancernik](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jancernik/32/275892_2.png) [@jancernik](https://meta.discourse.org/u/jancernik)
#### Post date: [August 13, 2024, 12:40pm UTC](https://meta.discourse.org/t/topic-information-at-the-bottom-of-threads/319546/5 "2024-08-13T12:40:49Z")

</div>

This PR is merged now.  
You can use the site setting `show_bottom_topic_map` to toggle its visibility.

---

<div class="post-metadata">

### Author: ![jancernik](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jancernik/32/275892_2.png) [@jancernik](https://meta.discourse.org/u/jancernik)
#### Post date: [August 17, 2024, 1:41pm UTC](https://meta.discourse.org/t/topic-information-at-the-bottom-of-threads/319546/6 "2024-08-17T13:41:06Z")

</div>

This topic was automatically closed after 4 days. New replies are no longer allowed.
