Tips on Customizing Podigee WordPress Quick Publish – now with Gutenberg support!

How to Hide the "Podigee" Admin Menu

function plt_hide_podigee_menus() {
	//Hide the "Podigee" menu.
	remove_menu_page('podigee-wpqp-plugin');
}

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

Where do I put this code?

How to Hide the "Podigee Quick Publish" Meta Box

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

	//Hide the "Podigee Quick Publish" meta box.
	remove_meta_box('pfex-box-id', $screen->id, 'advanced');
}

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