[2.3] Fixed the sort order dropdown items when create new product attributes

This commit is contained in:
Claudio Sanches 2015-04-27 13:08:53 -03:00
parent 298d5e90ed
commit 2e56790122
1 changed files with 1 additions and 0 deletions

View File

@ -458,6 +458,7 @@ class WC_Admin_Attributes {
<select name="attribute_orderby" id="attribute_orderby">
<option value="menu_order"><?php _e( 'Custom ordering', 'woocommerce' ); ?></option>
<option value="name"><?php _e( 'Name', 'woocommerce' ); ?></option>
<option value="name_num"><?php _e( 'Name (numeric)', 'woocommerce' ); ?></option>
<option value="id"><?php _e( 'Term ID', 'woocommerce' ); ?></option>
</select>
<p class="description"><?php _e( 'Determines the sort order of the terms on the frontend shop product pages. If using custom ordering, you can drag and drop the terms in this attribute.', 'woocommerce' ); ?></p>