Tips on Customizing WPO365 | MICROSOFT 365 GRAPH MAILER

How to Hide the "WPO365" Admin Menu

function plt_hide_wpo365_msgraphmailer_menus() {
	//Hide the "WPO365" menu.
	remove_menu_page('wpo365-wizard');
}

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

Where do I put this code?

How to Hide the "Daily WPO365 Insights" Dashboard Widget

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

	//Remove the "Daily WPO365 Insights" widget.
	remove_meta_box('wpo365-insights-widget', 'dashboard', 'normal');
}

add_action('wp_dashboard_setup', 'plt_hide_wpo365_msgraphmailer_dashboard_widgets', 20);