Hi, I’m wondering if there’s a way to hide or disable the “Other Notifications” tab. I often get confused between that and the main “All Notifications” list, and I would prefer to just see everything in one place. For me, the “All Notifications” tab is enough. Also would like to hide the other “Chat” icon and the “Bookmark” one.
Thanks!
Hi there, you can do this with CSS:
a.user-menu-tab:not(#user-menu-button-all-notifications) {
display: none;
}
Gives:
@NateDhaliwal Thank you, but it hides everything, including the ‘Profile’ options. How do users will logout?
1 Mi Piace
Whoopsies. Let me have another look.
1 Mi Piace
Perhaps try:
.top-tabs.tabs-list > a:not(#user-menu-button-all-notifications) {
display: none;
}
1 Mi Piace
Working great! Thank you so much, as always! Really appreciate it! @NateDhaliwal
1 Mi Piace
No problem, happy to help!
(Also, apologies for the curt reply above - I was in a bit of a hurry)