Tips on Customizing Edipost integration for WooCommerce

How to Hide the "EdiPost Integrasjon" Admin Menu

function plt_hide_edipost_woo_menus() {
	//Hide the "Settings → EdiPost Integrasjon" menu.
	remove_submenu_page('options-general.php', 'edipost_woocommerce_connector');
}

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

Where do I put this code?

How to Hide the "EdiPost-integrasjon" Meta Box

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

	//Hide the "EdiPost-integrasjon" meta box.
	remove_meta_box('WC_EdiWoo', $screen->id, 'side');
}

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