Ciao a tutti,
C’è un modo per rimuovere o nascondere la descrizione che appare sotto il nome della categoria quando gli utenti passano il mouse sul menu a discesa TUTTE LE CATEGORIE nell’angolo in alto a sinistra?
Vedi screenshot qui sotto dove ho il riquadro ROSSO. Quindi, nell’esempio sottostante, l’utente vedrà solo COME FARE poi BUG ecc. senza una descrizione di cosa riguarda la categoria… grazie
Don
12 Febbraio 2022, 11:02pm
2
Ciao,
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", {
…
Ma penso che se vuoi davvero nasconderlo anche ai nuovi utenti, allora puoi cambiare il codice di Kris in questo.
<script type="text/discourse-plugin" version="0.8">
api.modifyClass("component:category-drop", {
pluginId: "category-dropdown-description",
displayCategoryDescription: false,
});
</script>
5 Mi Piace
@Don GRAZIE mille, proverò lo script.
1 Mi Piace
system
(system)
Chiuso
12 Settembre 2023, 9:50am
4
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.