Zeka Posted January 27, 2020 Share Posted January 27, 2020 Hi. I have got a request from clients editors to hide some of the unnecessary notifications for some roles. Is it possible? Thanks. Link to comment Share on other sites More sharing options...
dragan Posted January 27, 2020 Share Posted January 27, 2020 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. 1 Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now