Remove Visual Composer Tab from Dashboard Menu [closed]

It is not easy to find it out, but it is pretty easy if you know how.

Add this following code to your themes functions.php.

function custom_menu_page_removing() {
    remove_menu_page('vc-welcome'); //vc
}
add_action( 'admin_init', 'custom_menu_page_removing' );

(Previously been admin_menu, now is admin_init)

This is how to find out for the next time:

If you want to hide a link from any plugin in the admin backend, simply use everything behind the ?page= in this example case it’s vc-welcome

No need for an additional plugin to remove/hide the link.

Leave a Comment