Всем привет,
Есть ли способ убрать или скрыть описание, которое появляется под названием категории, когда пользователь наводит курсор на выпадающее меню ВСЕ КАТЕГОРИИ в левом верхнем углу?
Смотрите скриншот ниже, где я обвёл красным. В приведённом примере пользователь будет видеть только КАК СДЕЛАТЬ, затем ОШИБКИ и т.д., без описания того, о чём эта категория… спасибо
Don
12.Февраль.2022 23:02:29
2
Привет,
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.
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", {
…
Но, думаю, если вы действительно хотите скрыть это и от новых пользователей, то код Криса можно изменить так:
<script type="text/discourse-plugin" version="0.8">
api.modifyClass("component:category-drop", {
pluginId: "category-dropdown-description",
displayCategoryDescription: false,
});
</script>
@Don СПАСИБО БОЛЬШОЕ, попробую запустить скрипт.