Elise, hi,
it’s actually not a big change, I think the theme can overwrite Woo’s hooks. We are trying to
change the sorting inside the class=”sidebar-widget woocommerce widget_product_categories”, to sort by ID.
I’ve found this code on Sorceforge, but I think it has to be hammered a little to be compatible with Basel. Can you please have a look – if you can make this work this would be really helpful. Thank you in advance!
add_filter( ‘woocommerce_product_subcategories-args’, ‘custom_woocommerce_get_subcategories_ordering_args’ );
function custom_woocommerce_get_subcategories_ordering_args( $args ) {
$args[‘order’] = ‘asc’;
$args[‘orderby’] = ‘ID’;
return $args;
}