Skip to content

Instantly share code, notes, and snippets.

@warderer
Last active February 11, 2025 22:02
Show Gist options
  • Save warderer/8fdddbfb070d7e812b3dadfd8aed878f to your computer and use it in GitHub Desktop.
Save warderer/8fdddbfb070d7e812b3dadfd8aed878f to your computer and use it in GitHub Desktop.
[Remove Activation Notice Ultimate Addons for Visual Composer] As a theme developer who bundles Visual Composer (now WP Bakery) and use Ultimate Addons for Visual Composer ith your theme you’re going to want to disable the activation notice for your end users. Add code to the theme functions.php #wordpress #VisualComposer #WPBakery
//Credits: https://sharewebdesign.com/blog/remove-activation-notice-ultimate-addons-for-visual-composer/
//Disable End User Admin Notification Message
//“Please activate your copy of the Ultimate Addons for Visual Composer to get update notifications, access to support features & other resources!”
define('BSF_PRODUCTS_NOTICES', false);
//Also you’ll probably want to disable the activation notice for Visual Composer itself:
vc_set_as_theme( $disable_updater = true );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment