Tips on Customizing QBeez Short Url

How to Hide the "QBeez Settings" Admin Menu

function plt_hide_qbeez_short_url_menus() {
	//Hide the "Settings → QBeez Settings" menu.
	remove_submenu_page('options-general.php', 'qbeez_shorturl-settings');
}

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

Where do I put this code?

How to Hide the "QBeez short url details" Meta Box

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

	//Hide the "QBeez short url details" meta box.
	remove_meta_box('myplugin_sectionid', $screen->id, 'advanced');
}

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