Tips on Customizing YaySMTP and Email Logs: Amazon SES, SendGrid, Outlook, Mailgun, Brevo, Google and Any SMTP Service

How to Hide YaySMTP Admin Menus

function plt_hide_yaysmtp_menus() {
	//Hide "YayCommerce".
	remove_menu_page('yaycommerce');
	//Hide "YayCommerce → YaySMTP".
	remove_submenu_page('yaycommerce', 'yaysmtp');
	//Hide "YayCommerce → Help".
	remove_submenu_page('yaycommerce', 'yaycommerce-help');
	//Hide "YayCommerce → Other plugins".
	remove_submenu_page('yaycommerce', 'yaycommerce-other-plugins');
}

add_action('admin_menu', 'plt_hide_yaysmtp_menus', 12);

Where do I put this code?

How to Hide the "YaySMTP Stats" Dashboard Widget

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

	//Remove the "YaySMTP Stats" widget.
	remove_meta_box('yaysmtp_analytics_email', 'dashboard', 'normal');
}

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