# Nascondi \\"Altre notifiche\\"

**URL:** https://meta.discourse.org/t/hide-other-notifications/376034
**Category:** Support
**Created:** [27 Luglio 2025, 10:25am UTC](https://meta.discourse.org/t/hide-other-notifications/376034 "2025-07-27T10:25:29Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![Cate\_Soule](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/cate_soule/32/492770_2.png) [@Cate\_Soule](https://meta.discourse.org/u/Cate_Soule)
#### Post date: [27 Luglio 2025, 10:25am UTC](https://meta.discourse.org/t/hide-other-notifications/376034/1 "2025-07-27T10:25:29Z")

</div>

Ciao, mi stavo chiedendo se ci fosse un modo per nascondere o disabilitare la scheda “Altre notifiche”. Spesso mi confondo tra questa e l’elenco principale “Tutte le notifiche” e preferirei vedere tutto in un unico posto. Per me, la scheda “Tutte le notifiche” è sufficiente. Vorrei anche nascondere l’altra icona “Chat” e quella “Segnalibro”.

 ![Screenshot 2025-07-27 at 6.20.33 PM](https://global.discourse-cdn.com/meta/original/4X/5/b/0/5b043ae4cf789d17198d8c7a1488ba9da7b4b5d9.jpeg)

 ![Screenshot 2025-07-27 at 6.24.05 PM](https://global.discourse-cdn.com/meta/original/4X/5/d/8/5d852c9b0708fb1cd73c858fe45136ec164667e9.jpeg)

Grazie!

---

<div class="post-metadata">

### Author: ![NateDhaliwal](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/natedhaliwal/32/313494_2.png) [@NateDhaliwal](https://meta.discourse.org/u/NateDhaliwal)
#### Post date: [27 Luglio 2025, 11:15am UTC](https://meta.discourse.org/t/hide-other-notifications/376034/2 "2025-07-27T11:15:32Z")

</div>

Ciao, puoi farlo con CSS:

```css
a.user-menu-tab:not(#user-menu-button-all-notifications) {
  display: none;
}

```

Risulta:

 ![image](https://global.discourse-cdn.com/meta/original/4X/4/a/9/4a9232ae49facccfc0c06f4962d1586be9285e44.png)

---

<div class="post-metadata">

### Author: ![Cate\_Soule](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/cate_soule/32/492770_2.png) [@Cate\_Soule](https://meta.discourse.org/u/Cate_Soule)
#### Post date: [27 Luglio 2025, 11:58am UTC](https://meta.discourse.org/t/hide-other-notifications/376034/3 "2025-07-27T11:58:30Z")

</div>

@NateDhaliwal Grazie, ma nasconde tutto, comprese le opzioni ‘Profilo’.

---

<div class="post-metadata">

### Author: ![NateDhaliwal](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/natedhaliwal/32/313494_2.png) [@NateDhaliwal](https://meta.discourse.org/u/NateDhaliwal)
#### Post date: [27 Luglio 2025, 12:04pm UTC](https://meta.discourse.org/t/hide-other-notifications/376034/4 "2025-07-27T12:04:17Z")

</div>

Ops. Fammi dare un’altra occhiata.

---

<div class="post-metadata">

### Author: ![NateDhaliwal](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/natedhaliwal/32/313494_2.png) [@NateDhaliwal](https://meta.discourse.org/u/NateDhaliwal)
#### Post date: [27 Luglio 2025, 12:14pm UTC](https://meta.discourse.org/t/hide-other-notifications/376034/5 "2025-07-27T12:14:17Z")

</div>

```plaintext
.top-tabs.tabs-list > a:not(#user-menu-button-all-notifications) {
  display: none;
}

```

---

<div class="post-metadata">

### Author: ![Cate\_Soule](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/cate_soule/32/492770_2.png) [@Cate\_Soule](https://meta.discourse.org/u/Cate_Soule)
#### Post date: [27 Luglio 2025, 12:31pm UTC](https://meta.discourse.org/t/hide-other-notifications/376034/6 "2025-07-27T12:31:50Z")

</div>

Funziona benissimo! Grazie mille, come sempre! @NateDhaliwal

---

<div class="post-metadata">

### Author: ![NateDhaliwal](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/natedhaliwal/32/313494_2.png) [@NateDhaliwal](https://meta.discourse.org/u/NateDhaliwal)
#### Post date: [27 Luglio 2025, 1:13pm UTC](https://meta.discourse.org/t/hide-other-notifications/376034/7 "2025-07-27T13:13:41Z")

</div>

Nessun problema, lieto di aiutare!  
(Mi scuso anche per la risposta brusca di cui sopra, ero un po’ di fretta)
