Tips on Customizing FlareStats

How to Hide FlareStats Admin Menus

function plt_hide_flarestats_menus() {
	//Hide the "FlareStats" menu.
	remove_menu_page('flarestats-analytics');
	//Hide the "FlareStats → Overview" menu.
	remove_submenu_page('flarestats-analytics', 'flarestats-analytics');
	//Hide the "FlareStats → Settings" menu.
	remove_submenu_page('flarestats-analytics', 'flarestats-settings');
}

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

Where do I put this code?

How to Hide the "FlareStats" Dashboard Widget

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

	//Remove the "FlareStats" widget.
	remove_meta_box('flarestats_dashboard_widget', 'dashboard', 'normal');
}

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