# Как убрать количество месяцев в разделе категорий

**URL:** https://meta.discourse.org/t/how-to-remove-the-number-of-months-in-the-category-section/167843
**Category:** Support
**Created:** [21.Октябрь.2020 10:04:06 UTC](https://meta.discourse.org/t/how-to-remove-the-number-of-months-in-the-category-section/167843 "2020-10-21T10:04:06Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![CommunityJ](https://avatars.discourse-cdn.com/v4/letter/c/5f8ce5/32.png) [@CommunityJ](https://meta.discourse.org/u/CommunityJ)
#### Post date: [21.Октябрь.2020 10:04:06 UTC](https://meta.discourse.org/t/how-to-remove-the-number-of-months-in-the-category-section/167843/1 "2020-10-21T10:04:06Z")

</div>

Я сотрудник страницы сообщества Jupiter ([https://community.jupiter.money/](https://community.jupiter.money/)). Как убрать число в месяц рядом с моей категорией? Обвел для наглядности

 ![Screen Shot 2020-10-21 at 3.32.58 PM](https://global.discourse-cdn.com/meta/original/3X/2/f/2f75b504048f9619456c9258f45e7995486321aa.png)

---

<div class="post-metadata">

### Author: ![osioke](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/osioke/32/238946_2.png) [@osioke](https://meta.discourse.org/u/osioke)
#### Post date: [21.Октябрь.2020 10:36:03 UTC](https://meta.discourse.org/t/how-to-remove-the-number-of-months-in-the-category-section/167843/2 "2020-10-21T10:36:03Z")

</div>

Вы можете использовать инструменты разработчика в браузере, чтобы найти нужный CSS-класс, а затем с помощью CSS внутри компонента темы #Customization > Theme component скрыть столбец. Что-то подобное уже делалось здесь [Hide Users Column](https://meta.discourse.org/t/hide-users-column/143506), но не для этого столбца.

---

<div class="post-metadata">

### Author: ![CommunityJ](https://avatars.discourse-cdn.com/v4/letter/c/5f8ce5/32.png) [@CommunityJ](https://meta.discourse.org/u/CommunityJ)
#### Post date: [21.Октябрь.2020 11:04:46 UTC](https://meta.discourse.org/t/how-to-remove-the-number-of-months-in-the-category-section/167843/3 "2020-10-21T11:04:46Z")

</div>

Извините, я не до конца понял. Не могли бы вы объяснить проще? Я проверил ссылку, которую вы прислали, и там есть встроенный компонент темы для удаления пользователей, но нет компонента для удаления месяцев.

---

<div class="post-metadata">

### Author: ![osioke](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/osioke/32/238946_2.png) [@osioke](https://meta.discourse.org/u/osioke)
#### Post date: [21.Октябрь.2020 11:38:38 UTC](https://meta.discourse.org/t/how-to-remove-the-number-of-months-in-the-category-section/167843/4 "2020-10-21T11:38:38Z")

</div>

То, что я предложил, требует некоторого понимания HTML и CSS. С этими знаниями вы сможете использовать инспектор браузера, чтобы проверить CSS-классы и внести необходимые изменения. После этого вы можете добавить эти правки на свой сайт с помощью компонента темы.

Ссылка, которую я поделился, ведёт к компоненту темы, созданному для почти аналогичной цели, поэтому вы можете изучить его и получить представление о том, как создать подобный для своего сайта.

Также я хочу поделиться некоторыми ресурсами, которые помогут вам лучше понять, как редактировать и настраивать интерфейс Discourse.

Вот эти ресурсы:

- [Beginner's guide to using Discourse Themes](https://meta.discourse.org/t/beginners-guide-to-using-discourse-themes/91966)
- [Developing Discourse Themes & Theme Components](https://meta.discourse.org/t/developer-s-guide-to-discourse-themes/93648)
- [Get started with Theme Creator and the Theme CLI](https://meta.discourse.org/t/beginners-guide-to-using-theme-creator-and-theme-cli-to-start-building-a-discourse-theme/108444)
- [Designer's Guide to getting started with themes in Discourse](https://meta.discourse.org/t/designers-guide-to-discourse-themes/152002)
- [Installing a theme or theme component](https://meta.discourse.org/t/how-do-i-install-a-theme-or-theme-component/63682)

---

<div class="post-metadata">

### Author: ![Jonathan5](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jonathan5/32/197134_2.png) [@Jonathan5](https://meta.discourse.org/u/Jonathan5)
#### Post date: [21.Октябрь.2020 11:50:27 UTC](https://meta.discourse.org/t/how-to-remove-the-number-of-months-in-the-category-section/167843/5 "2020-10-21T11:50:27Z")

</div>

Вы можете создать компонент темы со следующим CSS и включить этот компонент в тему вашего сайта.

```plaintext
/* Убирает «x в неделю» на странице /categories */
th.topics, td.topics {
    display: none;
}

```
