hey ๐
I’m trying to make this code work, but it dosen’t :/
i need to exclude a category from the product category.
Can you tell me why ?
/* Exclude categories
================================================== */
//* 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(‘132’); // Insert the product category IDs you wish to exclude
return $cat_args;
}
best regards,
Kristoffer