Turn off the editor education messages for staff?

Hello - I do not care for the pop-ups telling me to let others have a say, this topic has been solved, etc. etc. I spend all day answering our users’ questions and I know what I am doing, I do not want to hear from Discourse about it - is there any way to turns that stuff off, at least for administrators?

-Pascal

1 Like

I don’t think there’s a way to selectively turn these off for only the site staff in the settings… but you can do it with CSS. If you add this to the site’s theme it should hide the messages for both admins and moderators.

body.staff {
.composer-popup.education-message {
  display: none;
  }
}
6 Likes

Thanks! I’ll see if I can persuade the higher ups to give that a try.

-Pascal

Hi @awesomerobot

On my side, this code doesn’t seem to work.

When I log into a moderator account, I still see the popup.

Any idea of the issue ?

Thanks a lot !