Tips on Customizing VonSEO

How to Hide the "VonSEO" Admin Menu

function plt_hide_vonseo_menus() {
	//Hide the "VonSEO" menu.
	remove_menu_page('vonseo');
}

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

Where do I put this code?

How to Hide the "🚀 VonSEO — Content Intelligence" Meta Box

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

	//Hide the "🚀 VonSEO — Content Intelligence" meta box.
	remove_meta_box('vonseowp_meta_box', $screen->id, 'side');
}

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