Tips on Customizing Donation Thermometer

How to Hide the "Thermometer" Admin Menu

function plt_hide_donation_thermometer_menus() {
	//Hide the "Settings → Thermometer" menu.
	remove_submenu_page('options-general.php', 'thermometer-settings');
}

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

Where do I put this code?

How to Hide the "Donation Thermometer" Dashboard Widget

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

	//Remove the "Donation Thermometer" widget.
	remove_meta_box('thermometer_widget', 'dashboard', 'normal');
}

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