Tips on Customizing Shariff Wrapper

How to Hide the "Shariff" Admin Menu

function plt_hide_shariff_menus() {
	//Hide the "Settings → Shariff" menu.
	remove_submenu_page('options-general.php', 'shariff3uu');
}

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

Where do I put this code?

How to Hide the "Shariff Settings" Meta Box

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

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

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