Jump to content

Recommended Posts

Posted

Hi.

I have got a request from clients editors to hide some of the unnecessary notifications for some roles.  Is it possible? 

chrome_tmLAcfEZJu.png

Thanks. 

Posted

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

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
  • Recently Browsing   0 members

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