All /

Disable AI Integration

Our AI browses the frontend pages of your website to create test suggestions and feedback. We do not send sales or analytics data to any external service, only your publicly viewable pages.

If you would still rather have no suggestions, or send no data anywhere, you can easily disable all AI-related functionality.

A web page section prompts the user to enter their OpenAI API key, indicating that their plan includes zero AI requests and that AI suggestions require a valid key.

Under AI assist, enter the ‘license ‘OpenAI key’ with the word

DISABLED

if you prefer, you can instead do it with code – by adding a filter

// disable always 
add_filter('abst_disable_ai', function($disabled) {
    return true;
});



// or disable under certain conditions
add_filter('abst_disable_ai', function($disabled) {
    // Disable AI if user is not logged in
    if (!is_user_can('something')) {
        return true;
    }
    
    // Disable AI on specific pages
    if (is_page('members')) {
        return true;
    }
    
    // Keep existing value if none of the conditions are met
    return $disabled;
});

What happens after disabling?

  • CROassist is turned OFF
  • The AI toolbar prompt and automatic test suggestions will be turned off.
  • No data is sent to any external service.
  • Your data remains 100% local and private.

This is ideal for users who prefer not to use AI features or need to meet strict privacy requirements.

How do i know it’s disabled?

AI suggestion menu items will no longer display if you have correctly disabled

A website menu shows "AB Split Test" selected, with submenu options: "All AB Test", "New AB Test" (highlighted), and "Logs". "Elementor" and "Templates" are also visible.
A dropdown menu is open on a webpage, displaying options for AB test variations and a magic test; a red rectangle highlights a specific area beneath the menu.

To re-enable AI Assist

  • Clear the key entirely

Leave a Comment

You must be logged in to post a comment.