"Record Saved" banner

When a form is submitted a “Record Saved” banner appears.
Is it possible to suppress it?

Afternoon Chris,

To bring this into effect for individual pages add a Custom body ID in the Advanced area on the Basics Tab of the pages requiring the save banner muted.

Next add an early css stylesheet to your interface theme, or add to the bottom of an existing one.

#page-no_message .toast-info{display:none !important};

This will mute only info banners on those targeted pages.

Should you need to mute them everywhere just add:

.toast-info{display:none !important};

Hope this helps.

1 Like

Thanks Adam - worked perfectly.