• Resolved T4ng

    (@schwipps)


    Hi

    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.

    How do we turn off Elementor AI features?

    Thank you

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Support Rica

    (@ricav)

    Hi @schwipps,

    To deactivate the AI functionality, go to Elementor> Settings> Features. From there, uncheck the “Build with AI” feature and save the changes.

    And you can also turn off the AI notifications by following the steps in this article: https://elementor.com/help/turn-off-ai-notifications/

    I hope that helps.

    Kind regards,

    Thread Starter T4ng

    (@schwipps)

    Hi,

    Thanks for your answer. Unfortunately, no, it doesn’t help much.

    I already turned off the AI Feature. Nonetheless, there are still AI features everywhere.

    From the post edition page
    from the Elementor image edition menu
    From the text editor

    Finally, in my admin user settings page, I can’t find any Elementor AI section, while I’m an admin with all permissions granted:

    Finally, what’s the difference between diabling the feature, and unticking this checkbox from the user profile.

    Thank you.

    Plugin Support Milos

    (@miloss84)

    Hello,

    Thank you for contacting us again.

    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 wish you all the best, and have a great day!

    Thread Starter T4ng

    (@schwipps)

    I’m afraid that there is no way to stop showing Ai notification from elemetnor except to deactivate AI feature from Elementor> Settings> Features

    So should I consider it doesn’t work?

    Any reason why there’s no Elementor AI sectin in the user settings?


    Thank you.

    Plugin Support Milos

    (@miloss84)

    Hello,

    Thank you for contacting us again.

    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.

    I wish you all the best, and have a great day!

    Thread Starter T4ng

    (@schwipps)

    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.

    Metromas

    (@metromas)

    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.