Visual Composer asking for activation

Posted in: Newsmag
Post count: 65

Hi,
I have updated version of Visual Composer Version 4.11.2

Now its asking

“There is a new version of WPBakery Visual Composer available. View version 4.12 details. Automatic update is unavailable for this plugin. To receive automatic updates license activation is required. Please visit settings to activate your Visual Composer. Got Visual Composer in theme?”

How to update it?

Post count: 6535

Hi

We didn’t included V 4.12 in theme’s path yet. Currently we test this version of VC and if will work fine with the theme will be included in its path.

Thanks!

Post count: 15

You can disable this message… Open wp-content/plugins/js_composer and add the lines

// remove update notice for forked plugins
function remove_update_notifications($value) {

if ( isset( $value ) && is_object( $value ) ) {
unset( $value->response[ plugin_basename(__FILE__) ] );
}

return $value;
}
add_filter( 'site_transient_update_plugins', 'remove_update_notifications' );

…at the end of the js_composer.php.

Bye,
Christph


@Andrei
, could you add these lines by default? Since it’s not possible to get the current version of VC without paying again, it shouldn’t bother us with these messages.

Post count: 6535

Hi
Thanks @Chrissss for sharing your solution here.
Have a nice day!

Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.