miriam-m
9/18/2016 - 10:42 AM

Remove woo-commerce category from widget cat-list and/or category dropdown Add to functions.php

Remove woo-commerce category from widget cat-list and/or category dropdown Add to functions.php

/**
 * Remove Categories from WooCommerce Product Category Widget
 *
 * @author   Ren Ventura
 */
 
//* Used when the widget is displayed as a dropdown
add_filter( 'woocommerce_product_categories_widget_dropdown_args', 'rv_exclude_wc_widget_categories' );
//* Used when the widget is displayed as a list
add_filter( 'woocommerce_product_categories_widget_args', 'rv_exclude_wc_widget_categories' );
function rv_exclude_wc_widget_categories( $cat_args ) {
	$cat_args['exclude'] = array('55','68'); // Insert the product category IDs you wish to exclude
	return $cat_args;
}