X ヶ月後の通知を非表示にする

最近、Discourse に多くの新しいメンバーが参加しました。その一部は、非常に古いトピックに返信しています。私の質問ですが、新しい返信の上部に表示される「X ヶ月後」という通知を非表示にすることは可能でしょうか?

I’m curious as to why you’d want to do that. I find it super helpful to know when a reply came in, it provides a really interesting context. My first thought would be to close old threads. :slight_smile:

As an artsy forum, with multiple creators sharing their works, we wouldn’t want to close old threads. And each post has a time stamp, so we think these notices are quite useless. :slight_smile:

You can do this by adding some css (under admin > customize > themes)

.time-gap {
  .topic-avatar {
    height: 0;
   }
  .small-action-desc.timegap {
    display: none;
  }
}

Thank you for your quick response, Kris. Already applied! :slight_smile: