Skip to content

Snippet: Remove the Deprecated Notice When Editing the Old WPBakery Tabs

This isn't really recommended but if you have used the old deprecated tabs on your site a lot and wish to continue using them without seeing the orange deprecated notice it can be removed easily.

add_action( 'vc_after_init', function() {
	vc_map_update( 'vc_tabs', array(
		'deprecated' => false,
	) );
} );
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top