Tips on Customizing Smart Marketing SMS and Newsletters Forms

How to Hide Smart Marketing SMS and Newsletters Forms Admin Menus

function plt_hide_smart_marketing_for_wp_menus() {
	//Hide the "Smart Marketing" menu.
	remove_menu_page('egoi-for-wp');
	//Hide the "Smart Marketing → Account" menu.
	remove_submenu_page('egoi-for-wp', 'egoi-4-wp-account');
}

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

Where do I put this code?

How to Hide the "E-goi" Dashboard Widget

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

	//Remove the "E-goi" widget.
	remove_meta_box('egoi_main_dashboard_widget', 'dashboard', 'normal');
}

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