WPBakery license tab

I need to put the license that I purchased separately from Themco X in order to get the updates. This is on Beachwood.org website.
Thanks, Krina

Hello Krina,

Thanks for writing in!

Because what you are trying to accomplish requires a template customization, we would highly to 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 loved to know if this has work for you. Thank you.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.