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 Like
Whoopsies. Let me have another look.
1 Like
Perhaps try:
.top-tabs.tabs-list > a:not(#user-menu-button-all-notifications) {
display: none;
}
1 Like
Working great! Thank you so much, as always! Really appreciate it! @NateDhaliwal
1 Like
No problem, happy to help!
(Also, apologies for the curt reply above - I was in a bit of a hurry)