Wil je een specifieke categorie verbergen in de productcategorie widget? Plak deze code in je functions.php van je thema of in Code Snippets.
/* Exclude WC Product Categories */ add_filter( 'woocommerce_product_categories_widget_args', 'woo_product_cat_widget_args' ); function woo_product_cat_widget_args( $cat_args ) { $cat_args['exclude'] = array('ID','ID'); return $cat_args; }