Tips on Customizing knspr-imgnote

How to Hide the "knspr-ImgNote" Admin Menu

function plt_hide_knspr_imgnote_menus() {
	//Hide the "Plugins → knspr-ImgNote" menu.
	remove_submenu_page('plugins.php', 'knspr-imgnote-options');
}

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

Where do I put this code?

How to Hide the "Edit image notes" Meta Box

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

	//Hide the "Edit image notes" meta box.
	remove_meta_box('knsprImgNote', $screen->id, 'advanced');
}

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