Tips on Customizing Filter & Grids

How to Hide Filter & Grids Admin Menus

function plt_hide_ymc_smart_filter_menus() {
	//Hide "Filter  Grids".
	remove_menu_page('edit.php?post_type=ymc_filters');
	//Hide "Filter  Grids → All Filters".
	remove_submenu_page('edit.php?post_type=ymc_filters', 'edit.php?post_type=ymc_filters');
	//Hide "Filter  Grids → Add New Filter".
	remove_submenu_page('edit.php?post_type=ymc_filters', 'post-new.php?post_type=ymc_filters');
	//Hide "Filter  Grids → Settings".
	remove_submenu_page('edit.php?post_type=ymc_filters', 'ymc-settings');
}

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

Where do I put this code?

How to Hide Filter & Grids Meta Boxes

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

	//Hide the "Settings" meta box.
	remove_meta_box('ymc_main_meta_box', $screen->id, 'normal');
	//Hide the "Filter & Grids Features" meta box.
	remove_meta_box('ymc_side_meta_box', $screen->id, 'side');
}

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

How to Hide the "Filter & Grids" Dashboard Widget

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

	//Remove the "Filter & Grids" widget.
	remove_meta_box('ymc_filter_grids_display', 'dashboard', 'normal');
}

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