# 카테고리 이름 아래 설명 문구 제거하는 방법

**URL:** https://meta.discourse.org/t/how-to-remove-blurb-under-category-name/217999
**Category:** Development
**Created:** [2월 12, 2022, 10:25오후 UTC](https://meta.discourse.org/t/how-to-remove-blurb-under-category-name/217999 "2022-02-12T22:25:11Z")
**Posts on this page:** 1
**Showing post:** 2

<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: [2월 12, 2022, 11:02오후 UTC](https://meta.discourse.org/t/how-to-remove-blurb-under-category-name/217999/2 "2022-02-12T23:02:29Z")

</div>

안녕하세요,

> [@카테고리 드롭다운에 카테고리 설명을 표시하려면 어떻게 해야 하나요?](https://meta.discourse.org/t/how-can-i-add-the-category-descriptions-to-show-in-the-category-dropdowns/209152/4?u=dodesz):
>
> The description in the dropdown is shown only for new users at TL0 that need to learn how the site is structured. The description will be automatically hidden when a user reaches TL1.

* * *

> [@카테고리 드롭다운에 카테고리 설명을 표시하려면 어떻게 해야 하나요?](https://meta.discourse.org/t/how-can-i-add-the-category-descriptions-to-show-in-the-category-dropdowns/209152/6?u=dodesz):
>
> As Daniela mentioned, we only show the category description in the dropdown for new users (trust level 0) and it’s hidden for everyone else. The thought is that regular visitors will benefit from seeing more categories at once and the descriptions are less useful. You can override this behavior by adding this to the head section of your site’s theme (admin \> customize \> themes \> edit html/css): \<script type="text/discourse-plugin" version="0.8"\> api.modifyClass("component:category-drop", { …

하지만 새 사용자들에게도 이를 숨기고 싶다면, Kris의 코드를 다음과 같이 수정할 수 있습니다.

```xml
<script type="text/discourse-plugin" version="0.8">
api.modifyClass("component:category-drop", {
  pluginId: "category-dropdown-description",
  displayCategoryDescription: false,
});
</script>

```

---

_[View the full topic](https://meta.discourse.org/t/how-to-remove-blurb-under-category-name/217999)._
