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