Skip to content

Snippet: Remove Callout Deprecated Notice


function myprefix_remove_deprecated_notice_on_vcex_callout() {
	vc_map_update( 'vcex_callout', array(
		'deprecated' => false,
	) );
}
add_action( 'vc_after_init', 'myprefix_remove_deprecated_notice_on_vcex_callout' );
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