Tips on Customizing Import and export users and customers

How to Hide Import and export users and customers Admin Menus

function plt_hide_import_users_from_csv_with_meta_menus() {
	//Hide the "Tools → Import and export users and customers" menu.
	remove_submenu_page('tools.php', 'acui');
	//Hide the "Tools → Scheduled Actions" menu.
	remove_submenu_page('tools.php', 'action-scheduler');
}

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

Where do I put this code?

How to Hide the "Attachment" Meta Box

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

	//Hide the "Attachment" meta box.
	remove_meta_box('email_template_attachments', $screen->id, 'side');
}

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