Tips on Customizing Starter Sites & Templates by Neve

How to Hide the "Starter Templates" Admin Menu

function plt_hide_templates_patterns_collection_menus() {
	//Hide the "Appearance → Starter Templates" menu.
	remove_submenu_page('themes.php', 'tiob-starter-sites');
}

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

Where do I put this code?

How to Hide the "WordPress Guides/Tutorials" Dashboard Widget

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

	//Remove the "WordPress Guides/Tutorials" widget.
	remove_meta_box('themeisle', 'dashboard', 'normal');
}

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