Tips on Customizing All In One SEO Pack for WooCommerce

How to Hide the "All in One SEO Pack" Meta Box

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

	//Hide the "All in One SEO Pack" meta box.
	remove_meta_box('woocommerce-aioseop', $screen->id, 'normal');
}

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

Where do I put this code?

How to Hide the "Plugin News - by Visser Labs" Dashboard Widget

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

	//Remove the "Plugin News - by Visser Labs" widget.
	remove_meta_box('woo_vl_news_widget', 'dashboard', 'normal');
}

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