Tips on Customizing Pigeon Paywall

How to Hide the "Pigeon" Admin Menu

function plt_hide_pigeon_menus() {
	//Hide the "Settings → Pigeon" menu.
	remove_submenu_page('options-general.php', 'pigeon');
}

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

Where do I put this code?

How to Hide the "Pigeon Settings" Meta Box

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

	//Hide the "Pigeon Settings" meta box.
	remove_meta_box('pigeonwp', $screen->id, 'side');
}

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