Jump to content

Hide some of user notifications


Zeka
 Share

Recommended Posts

Easiest thing to do is to add some custom CSS to admin.css, e.g.

body[class*="editor"] #notices {
  display: none;
}

that would hide all notifications for role "editor".

Or some variation thereof, e.g.

body[class*="editor"] #notices .NoticeDebug {
  display: none !important;
}

body[class*="editor"] #notices .NoticeMessage {
  display: none !important;
}

The cleanest way would be if this core module would have an in-built permission, then you could handle it normally via the PW access system.

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...