Hi @mintal,
We purposely exclude WooCommerce’s Product Categories because it comes with drag-and-drop re-ordering by default (you can re-order the tabs by grabbing this https://imgur.com/a/Jan9384).
If you’d like to enable it, you can use this filter function:
add_filter( 'yikes_simple_taxonomy_ordering_ignored_woocommerce_taxonomies', 'enable_yikes_sto_for_product_categories', 10, 1 );
function enable_yikes_sto_for_product_categories( $taxonomy_slugs ) {
unset( $taxonomy_slugs[1] );
return $taxonomy_slugs;
}
Cheers,
Kevin.
Thread Starter
Mintal
(@mintal)
I don’t know why but the default orderin doesn’t work for me. I have tried it but it won’t work.
Here you can see: http://recordit.co/m5OavSF86p
-
This reply was modified 8 years, 1 month ago by
Mintal.
I see. Did you try ordering through our plugin via the filter function?