# 주제에서 '조회수' 끄기

**URL:** https://meta.discourse.org/t/turn-off-the-views-on-topic/338900
**Category:** Support
**Created:** [11월 28, 2024, 2:28오전 UTC](https://meta.discourse.org/t/turn-off-the-views-on-topic/338900 "2024-11-28T02:28:51Z")
**Posts on this page:** 1
**Showing post:** 5

<div class="post-metadata">

### Author: ![Lilly](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/lilly/32/575047_2.png) [@Lilly](https://meta.discourse.org/u/Lilly)
#### Post date: [11월 28, 2024, 3:48오전 UTC](https://meta.discourse.org/t/turn-off-the-views-on-topic/338900/5 "2024-11-28T03:48:40Z")

</div>

단순히 숨기고 싶다면, 다음 코드를 사용할 수 있습니다(테마 또는 테마 컴포넌트의 공용 CSS에 추가):

```scss
.topic-map __contents .topic-map__ stats .fk-d-menu__trigger {
    display: none;
}

```

특정 카테고리에만 적용하려면:

```scss
.category-[your-category-slug] {
.topic-map __contents .topic-map__ stats .fk-d-menu__trigger {
    display: none;
  }
}

```

…그리고 네, 위에서 @NateDhaliwal이 말한 대로 거의 그대로 적용했습니다. 그가 위에 올린 링크에서 이러한 수정 방법을 확인할 수 있습니다.

---

_[View the full topic](https://meta.discourse.org/t/turn-off-the-views-on-topic/338900)._
