Skip to content

Snippet: Re-add the WPBakery Welcome/About Screen

The WPBakery welcome screen is removed by default in the Total theme, but you can re-add it if you wanted (I don't know why you would ever want to do that) using the following snippet.

add_action( 'after_setup_theme', function() {
	remove_action( 'admin_menu', array( 'WPEX_Visual_Composer_Config', 'remove_welcome' ), 999 );
}, 4 );
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