Tips on Customizing YITH Infinite Scrolling

How to Hide YITH Infinite Scrolling Admin Menus

function plt_hide_yith_infinite_scrolling_menus() {
	//Hide "YITH".
	remove_menu_page('yith_plugin_panel');
	//Hide "YITH → Infinite Scrolling".
	remove_submenu_page('yith_plugin_panel', 'yith_infs_panel');
	//Hide "YITH → System Status".
	remove_submenu_page('yith_plugin_panel', 'yith_system_info');
	//Hide "YITH → How to install premium version".
	remove_submenu_page('yith_plugin_panel', '//support.yithemes.com/hc/en-us/articles/217840988');
}

add_action('admin_menu', 'plt_hide_yith_infinite_scrolling_menus', 101);

Where do I put this code?

How to Hide YITH Infinite Scrolling Dashboard Widgets

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

	//Remove the "YITH Latest Updates" widget.
	remove_meta_box('yith_dashboard_products_news', 'dashboard', 'normal');
	//Remove the "Latest news from YITH Blog" widget.
	remove_meta_box('yith_dashboard_blog_news', 'dashboard', 'normal');
}

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