Fix ordering. Closes #1103.
This commit is contained in:
parent
9031d15756
commit
15265fe721
|
@ -182,6 +182,7 @@ Yes you can! Join in on our [GitHub repository](http://github.com/woothemes/wooc
|
|||
* Fix - Backorders for variations allow more than stock to be purchased now
|
||||
* Fix - Conflict with compfight.
|
||||
* Fix - Tax calc JS NaN fix
|
||||
* Fix - Category widget name sorting.
|
||||
* Localization - Updated localisations
|
||||
* Localization - Updated currency symbols
|
||||
* Localization - translations for admin menu names
|
||||
|
|
|
@ -55,7 +55,7 @@ class WooCommerce_Widget_Product_Categories extends WP_Widget {
|
|||
|
||||
} else {
|
||||
|
||||
$cat_args['orderby'] = $o;
|
||||
$cat_args['orderby'] = 'title';
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue