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 … Read more