Tips on Customizing Easy Feedback for Divi

How to Hide the "Easy Feedback" Admin Menu

function plt_hide_easy_feedback_for_divi_menus() {
	//Hide the "Settings → Easy Feedback" menu.
	remove_submenu_page('options-general.php', 'easy-feedback');
}

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

Where do I put this code?

How to Hide the "Easy Feedback" Dashboard Widget

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

	//Remove the "Easy Feedback" widget.
	remove_meta_box('efdivi_dashboard_widget', 'dashboard', 'normal');
}

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