Tips on Customizing TiQety Quotes

How to Hide TiQety Quotes Admin Menus

function plt_hide_tiqety_quotes_menus() {
	//Hide "Quotes".
	remove_menu_page('edit.php?post_type=tiqety_quote');
	//Hide "Quotes → All Quotes".
	remove_submenu_page('edit.php?post_type=tiqety_quote', 'edit.php?post_type=tiqety_quote');
	//Hide "Quotes → Add New Quote".
	remove_submenu_page('edit.php?post_type=tiqety_quote', 'post-new.php?post_type=tiqety_quote');
	//Hide "Quotes → Settings".
	remove_submenu_page('edit.php?post_type=tiqety_quote', 'tiqetyq-settings');
}

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

Where do I put this code?

How to Hide TiQety Quotes Meta Boxes

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

	//Hide the "Quote Details" meta box.
	remove_meta_box('tiqetyq-quote-details', $screen->id, 'normal');
	//Hide the "Scope of Work" meta box.
	remove_meta_box('tiqetyq-scope-of-work', $screen->id, 'normal');
	//Hide the "Line Items" meta box.
	remove_meta_box('tiqetyq-line-items', $screen->id, 'normal');
}

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