Hello Carla,
Thanks for writing in!
The WPBakery Page Builder is a bundled plugin and because of that, we have removed the Product License tab in the WPBakery General Settings. This is to avoid any confusion when the plugin ask for activation. So it seems you have purchased a separate plugin license and there is nowhere you can register your WPBakery Page Builder plugin. To get your issue resolve, what you are trying to accomplish requires template customization, we would highly suggest that you use a child theme. This allows you to make code changes that won’t be overwritten when an X update is released.
After the child theme is set up, please add the following code in your child theme’s functions.php file
function show_vc_updater(){
remove_action( 'admin_notices', 'x_visual_composer_hide_update_notice', -99 );
vc_manager()->disableUpdater(false);
}
add_action('vc_before_init', 'show_vc_updater', 99);
We would love to know if this has worked for you. Thank you.