For months now, I get Elementor AI functions proposals litterally everywhere in the admin. While I don’t use them, at all.
I don’t want them, and if I have to deal with a slower admin, and a busier server because of Elementor, I would like this resource comsumption not being aggravated by AI options, which I believe, if useful for some users, shouldn’t be a core functionnality of Elementor, thus possibly turned off.
I know no AI is triggered if I don’t use it. But, it’s still much more menus to load in the admin, When I don’t need it. Not to mention it makes the interface more crowded.
I’m afraid that there is no way to stop showing Ai notification from elemetnor except to deactivate AI feature from Elementor> Settings> Features
However, I have added this idea to our internal list as a Feature Request, so this feature might appear in one of the future Elementor updates. Thank you for your feedback!
Finally, I would like to apologize for not being able to provide this particular solution at the moment. I hope for your understanding.
If you have any questions, don’t hesitate to contact us again by opening a new ticket.
I apologize for not explaining clearly in my previous message. I’m afraid there is currently no way to stop the AI notifications from Elementor except by deactivating the AI feature itself from Elementor > Settings > Features. However, please note that turning off this feature will disable the AI functionality entirely, but it will not stop notifications related to installing or activating the AI feature.
Like we mentinon we have added this idea to turn off notification to our internal list as a Feature Request, so this feature might appear in one of the future Elementor updates. Thank you for your feedback!
I apologize for not being able to provide this particular solution at the moment and hope for your understanding.
If you have any questions, don’t hesitate to contact us again by opening a new ticket.
From scratch, WordPress loads everything, everywhere. which allow users to download many plugins and test them straight away, at least in a not-too-much (or properly) customized WordPress instance. But the other side of the coin is that it makes WordPress very prone to high server resources consumption.
Once you’re aware of this, you guys can’t push commercial incentives everywhere in the admin. Elementor is a page builder. Not an AI image generator. We don’t install it for that. You can offer it, but you can’t saturate all Elementor users screens, and suck on their server resources pointlessly, only to push such trivial functionalities (sorry to say, at least for a page builder).
You guys must, at the very least, provide an admin option to fully disable these commercial incentives.
function customize_elementor() {
// Remove Elementor Nag Admin Notices
echo ‘<style>.e-notice–cta { display: none !important; }</style>’;
// Remove Elementor AI script from editor
if ( \Elementor\Plugin::$instance->editor->is_edit_mode() ) {
wp_dequeue_script( ‘elementor-ai’ );
wp_dequeue_script( ‘elementor-ai-media-library’ );
}
// Dequeue Elementor AI media library and Gutenberg scripts in admin
wp_dequeue_script( ‘elementor-ai-media-library’ );
wp_dequeue_script( ‘elementor-ai-gutenberg’ );
}
// Hook for removing Elementor nag in admin
add_action( ‘admin_head’, ‘customize_elementor’ );
// Hook for removing Elementor AI scripts from editor
add_action( ‘elementor/editor/after_enqueue_scripts’, ‘customize_elementor’ );
// Hook for dequeuing Elementor AI media library and Gutenberg scripts in admin
add_action(‘admin_enqueue_scripts’, ‘customize_elementor’, 100);
Viewing 7 replies - 1 through 7 (of 7 total)
The topic ‘How to get rid from AI functionalities’ is closed to new replies.