# 禁用在底部显示分叉回复为孤立消息

**URL:** <https://meta.discourse.org/t/disable-showing-forked-replies-as-strays-at-the-bottom/110444>\
**Category:** UX\
**Created:** [2019年三月1日 15:16 UTC](https://meta.discourse.org/t/disable-showing-forked-replies-as-strays-at-the-bottom/110444 "2019-03-01T15:16:54Z")\
**Posts on this page:** 1\
**Showing post:** 2

<div class="post-metadata">

**Author:** ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)\
**Post date:** [2019年三月1日 15:58 UTC](https://meta.discourse.org/t/disable-showing-forked-replies-as-strays-at-the-bottom/110444/2 "2019-03-01T15:58:38Z")

</div>

No, it’s not possible. Discourse isn’t meant to be used as a threaded discussion platform, so we don’t support this on a fundamental level (some justification here [Web Discussions: Flat by Design](https://blog.codinghorror.com/web-discussions-flat-by-design/)).

It is fairly easy to do the opposite and hide the expandable sections with CSS so you’re not seeing the duplicate content (this would go under `admin > customize > themes > edit CSS/HTML > desktop > CSS`).

```CSS
a.reply-to-tab, 
.post-controls button.show-replies {
  display: none;
}

```

---

_[View the full topic](https://meta.discourse.org/t/disable-showing-forked-replies-as-strays-at-the-bottom/110444)._
