Tips on Customizing AutomatorWP – The #1 automator plugin for no-code automation in WordPress

How to Hide AutomatorWP Admin Menus

function plt_hide_automatorwp_menus() {
	//Hide "AutomatorWP".
	remove_menu_page('automatorwp');
	//Hide "AutomatorWP → Dashboard".
	remove_submenu_page('automatorwp', 'automatorwp');
	//Hide "AutomatorWP → Automations".
	remove_submenu_page('automatorwp', 'automatorwp_automations');
	//Hide "AutomatorWP → Logs".
	remove_submenu_page('automatorwp', 'automatorwp_logs');
	//Hide "AutomatorWP → Add-ons".
	remove_submenu_page('automatorwp', 'automatorwp_add_ons');
	//Hide "AutomatorWP → Licenses".
	remove_submenu_page('automatorwp', 'automatorwp_licenses');
	//Hide "AutomatorWP → Settings".
	remove_submenu_page('automatorwp', 'automatorwp_settings');
}

add_action('admin_menu', 'plt_hide_automatorwp_menus', 13);

Where do I put this code?

How to Hide AutomatorWP Meta Boxes

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

	//Hide the "Save Changes" meta box.
	remove_meta_box('automatorwp-automations-save-changes', $screen->id, 'side');
	//Hide the "Triggers" meta box.
	remove_meta_box('automatorwp_triggers', $screen->id, 'normal');
	//Hide the "Actions" meta box.
	remove_meta_box('automatorwp_actions', $screen->id, 'normal');
	//Hide the "Title" meta box.
	remove_meta_box('automatorwp-automations-title', $screen->id, 'normal');
	//Hide the "Log Details" meta box.
	remove_meta_box('automatorwp_log_details', $screen->id, 'side');
	//Hide the "Log Data" meta box.
	remove_meta_box('automatorwp_log_data', $screen->id, 'normal');
}

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