Tips on Customizing Uncanny Automator – Easy Automation, Integration, Webhooks & Workflow Builder Plugin

How to Hide Uncanny Automator Admin Menus

function plt_hide_uncanny_automator_menus() {
	//Hide "Automator".
	remove_menu_page('edit.php?post_type=uo-recipe');
	//Hide "Automator → Setup wizard".
	remove_submenu_page('edit.php?post_type=uo-recipe', 'uncanny-automator-setup-wizard');
	//Hide "Automator → Dashboard".
	remove_submenu_page('edit.php?post_type=uo-recipe', 'uncanny-automator-dashboard');
	//Hide "Automator → All recipes".
	remove_submenu_page('edit.php?post_type=uo-recipe', 'edit.php?post_type=uo-recipe');
	//Hide "Automator → Add new recipe".
	remove_submenu_page('edit.php?post_type=uo-recipe', 'post-new.php?post_type=uo-recipe');
	//Hide "Automator → Recipe templates".
	remove_submenu_page('edit.php?post_type=uo-recipe', 'uncanny-automator-template-library');
	//Hide "Automator → Categories".
	remove_submenu_page('edit.php?post_type=uo-recipe', 'edit-tags.php?taxonomy=recipe_category&post_type=uo-recipe');
	//Hide "Automator → Tags".
	remove_submenu_page('edit.php?post_type=uo-recipe', 'edit-tags.php?taxonomy=recipe_tag&post_type=uo-recipe');
	//Hide "Automator → All integrations".
	remove_submenu_page('edit.php?post_type=uo-recipe', 'uncanny-automator-integrations');
	//Hide "Automator → App integrations".
	remove_submenu_page('edit.php?post_type=uo-recipe', 'http://127.0.0.1/wp-admin/edit.php?post_type=uo-recipe&page=uncanny-automator-config&tab=premium-integrations');
	//Hide "Automator → Logs".
	remove_submenu_page('edit.php?post_type=uo-recipe', 'uncanny-automator-admin-logs');
	//Hide "Automator → Status".
	remove_submenu_page('edit.php?post_type=uo-recipe', 'uncanny-automator-admin-tools');
	//Hide "Automator → Settings".
	remove_submenu_page('edit.php?post_type=uo-recipe', 'uncanny-automator-config');
	//Hide "Automator → Upgrade to Pro".
	remove_submenu_page('edit.php?post_type=uo-recipe', 'uncanny-automator-pro-upgrade');
}

add_action('admin_menu', 'plt_hide_uncanny_automator_menus', 1000);

Where do I put this code?

How to Hide Uncanny Automator Meta Boxes

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

	//Hide the "Recipe" meta box.
	remove_meta_box('uo-automator-publish', $screen->id, 'side');
	//Hide the "Recipe notes" meta box.
	remove_meta_box('uo-automator-notes', $screen->id, 'side');
	//Hide the "Triggers" meta box.
	remove_meta_box('uo-recipe-triggers-meta-box-ui', $screen->id, 'uap_items');
	//Hide the "Actions" meta box.
	remove_meta_box('uo-recipe-actions-meta-box-ui', $screen->id, 'uap_items');
}

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