Last active
February 11, 2025 22:02
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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