Can you customize notification bar options

Is it possible to design the notification bar as well? It looks quite confusing with lots of options next to it. I mean, if the notification could be something similar to other social media profiles, have you worked on something like that? These other options like profile, bookmarks, chat, etc., on the right seem a bit excessive to me. So any possible way to remove or turn this off? I mean yes css would do the work, but I would have to make a lot of changes then. Any alternative to it?

1 Like

I think you may have answered your own question. :slight_smile:

But have you seen any existing Theme component that get you close to what you want?

If not (or if one is close but not close enough) then you may need to design your own.

1 Like

You could use Custom User Menu to show user options in it’s own menu and then just hide the tabs on the notifications menu entirely with

.user-menu.revamped {
  // target both desktop and mobile
  .menu-tabs-container, 
  .tabs-list { 
     display: none;
  }
}
3 Likes

I’m agree with the OP, I hid a few selectors on my self-hosted instance with CSS. It’s kinda easy to do but not solve all the issue.

The same applies to the overall user profile (horizontal scrolling, repeated icons, plenty of options visible), but I remember some core team member telling us they are working on this :slight_smile:

Wow, thanks for that. Definitely I will try it, you are doing great!

1 Like