Disable visual composer plugin update

Remember to change the “theme folder” name.

// REMOVE UPDATE NOTICE FOR VISUAL COMPOSER
add_filter('site_transient_update_plugins', 'remove_update_notifications');
function remove_update_notifications($value) {
    if ( isset( $value ) && is_object( $value ) ) {
        unset($value->response[ 'x-child/js_composer.php' ]);
    }
}
Comments