Tips on Customizing DawsonyWeb – Client Tutorial Videos

How to Hide DawsonyWeb - Client Tutorial Videos Admin Menus

function plt_hide_dawsonyweb_client_tutorial_videos_menus() {
	//Hide the "Tutorial Videos" menu.
	remove_menu_page('dawscltu-tutorials');
	//Hide the "Tutorial Videos → Tutorial Videos" menu.
	remove_submenu_page('dawscltu-tutorials', 'dawscltu-tutorials');
	//Hide the "Tutorial Videos → Manage Tutorials" menu.
	remove_submenu_page('dawscltu-tutorials', 'dawscltu-manage');
}

add_action('admin_menu', 'plt_hide_dawsonyweb_client_tutorial_videos_menus', 11);

Where do I put this code?

How to Hide the "Tutorial Videos" Dashboard Widget

function plt_hide_dawsonyweb_client_tutorial_videos_dashboard_widgets() {
	$screen = get_current_screen();
	if ( !$screen ) {
		return;
	}

	//Remove the "Tutorial Videos" widget.
	remove_meta_box('dawscltu_tutorial_videos', 'dashboard', 'normal');
}

add_action('wp_dashboard_setup', 'plt_hide_dawsonyweb_client_tutorial_videos_dashboard_widgets', 20);