Tips on Customizing Location Weather – Hourly, Daily Weather Forecast Widget and Weather Map

How to Hide Location Weather Admin Menus

function plt_hide_location_weather_menus() {
	//Hide "Location Weather".
	remove_menu_page('edit.php?post_type=location_weather');
	//Hide "Location Weather → Manage Weather".
	remove_submenu_page('edit.php?post_type=location_weather', 'edit.php?post_type=location_weather');
	//Hide "Location Weather → Add New Weather".
	remove_submenu_page('edit.php?post_type=location_weather', 'post-new.php?post_type=location_weather');
	//Hide "Location Weather → Settings".
	remove_submenu_page('edit.php?post_type=location_weather', 'lw-settings');
	//Hide "Location Weather → Tools".
	remove_submenu_page('edit.php?post_type=location_weather', 'lw-tools');
	//Hide "Location Weather → Recommended".
	remove_submenu_page('edit.php?post_type=location_weather', 'edit.php?post_type=location_weather&page=splw_help#recommended');
	//Hide "Location Weather → Lite vs Pro".
	remove_submenu_page('edit.php?post_type=location_weather', 'edit.php?post_type=location_weather&page=splw_help#lite-to-pro');
	//Hide "Location Weather → Get Help".
	remove_submenu_page('edit.php?post_type=location_weather', 'splw_help');
}

add_action('admin_menu', 'plt_hide_location_weather_menus', 81);

Where do I put this code?

How to Hide Location Weather Meta Boxes

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

	//Hide the "Location Weather Generation Layout" meta box.
	remove_meta_box('sp_location_weather_layout', $screen->id, 'advanced');
	//Hide the "Location Weather Generation Options" meta box.
	remove_meta_box('sp_location_weather_generator', $screen->id, 'advanced');
	//Hide the "Live Preview" meta box.
	remove_meta_box('sp_location_weather_live_preview', $screen->id, 'normal');
	//Hide the "How To Use" meta box.
	remove_meta_box('sp_lw_shortcode', $screen->id, 'side');
	//Hide the "Page Builders" meta box.
	remove_meta_box('sp_lw_builder_option', $screen->id, 'side');
	//Hide the "Unlock Pro Feature" meta box.
	remove_meta_box('sp_lw_pro_notice', $screen->id, 'side');
}

add_action('add_meta_boxes', 'plt_hide_location_weather_metaboxes', 20);