u/serafinobono

How to remove AI and nag banners from the Editor window

I am a bit annoyed about how much Elementor tries to shove their upsells not only into my face - but also into my customers faces when they edit pages with Elementor.

Here is a code snippet to make it a bit nicer.
You can add it to a code snippets plugin as a PHP snippet.

add_action( 'elementor/editor/footer', function() {
    echo '<style>
        #e-notice-bar, /* nags when license is about to expire */
        #elementor-panel-elements-notice-area,
        #elementor-panel__editor__help, /* help button */
        button.MuiIconButton-root[aria-label="What\'s New"], /* whats new button */
#elementor-panel-category-custom-widgets, /* Create custom widgets with Angie */
.e-ai-button, /* pink notice above editor */
button.MuiButtonBase-root[aria-label="Angie"] /* Angie button upper left */
{ display: none !important; }
    </style>';
reddit.com
u/serafinobono — 2 days ago