Tips on Customizing WPB Category Slider for WooCommerce – Product Categories Carousel Slider & Grid with Icon and Images

How to Hide WPB Product Categories Slider for WooCommerce Admin Menus

function plt_hide_wpb_woocommerce_category_slider_menus() {
	//Hide the "Woo Cat Slider" menu.
	remove_menu_page('wpb-woocommerce-category-slider-about');
	//Hide the "Woo Cat Slider → Woo Cat Slider" menu.
	remove_submenu_page('wpb-woocommerce-category-slider-about', 'wpb-woocommerce-category-slider-about');
	//Hide the "Woo Cat Slider → Settings" menu.
	remove_submenu_page('wpb-woocommerce-category-slider-about', 'wpb-woocommerce-category-slider-settings');
}

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

Where do I put this code?

How to Hide the "WPB Product Categories Slider for WooCommerce" Dashboard Widget

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

	//Remove the "WPB Product Categories Slider for WooCommerce" widget.
	remove_meta_box('wpb_wcs_pro_features', 'dashboard', 'normal');
}

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