Home › Forums › Basel support forum › Basel Sidebar Woo Categories – Orderby categories by ID › Reply To: Basel Sidebar Woo Categories – Orderby categories by ID
May 27, 2020 at 8:02 am
#198216
Elise Noromit
Member
Hello,
Pleaase add the code to the fundtions.php of the child theme:
add_filter(
'woocommerce_product_categories_widget_args',
function( $args ) {
$args['orderby'] = 'ID';
$args['order'] = 'asc';
return $args;
}
);
Best Regards