Tips on Customizing Essential Addons for Elementor – Popular Elementor Templates & Widgets

How to Hide the "Essential Addons" Admin Menu

function plt_hide_essential_addons_for_elementor_lite_menus() {
	//Hide the "Essential Addons" menu.
	remove_menu_page('eael-settings');
}

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

Where do I put this code?

How to Hide the "SEO Check" Dashboard Widget

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

	//Remove the "SEO Check" widget.
	remove_meta_box('eael_thinkrank_seo_check', 'dashboard', 'normal');
}

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