Tips on Customizing jQuery Pin It Button for Images

How to Hide the "jQuery Pin It Button For Images Lite" Admin Menu

function plt_hide_jquery_pin_it_button_for_images_menus() {
	//Hide the "Settings → jQuery Pin It Button For Images Lite" menu.
	remove_submenu_page('options-general.php', 'jpibfi_settings');
}

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

Where do I put this code?

How to Hide the "jQuery Pin It Button for Images Settings" Meta Box

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

	//Hide the "jQuery Pin It Button for Images Settings" meta box.
	remove_meta_box('jpibfi-disable-plugin_meta', $screen->id, 'side');
}

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