Tips on Customizing Enjoy Social Feed plugin for WordPress website

How to Hide the "Enjoy Instagram" Admin Menu

function plt_hide_enjoy_instagram_instagram_responsive_images_gallery_and_carousel_menus() {
	//Hide the "Enjoy Instagram" menu.
	remove_menu_page('enjoyinstagram_plugin_options');
}

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

Where do I put this code?

How to Hide the "Enjoy Instagram Stats" Dashboard Widget

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

	//Remove the "Enjoy Instagram Stats" widget.
	remove_meta_box('ei_dashboard_widget_stats', 'dashboard', 'normal');
}

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