Added extra weight andimension units to choose from

This commit is contained in:
Geert De Deckere 2012-02-07 15:14:19 +01:00
parent 11445ad34c
commit 851197f9e1
1 changed files with 8 additions and 6 deletions

View File

@ -513,9 +513,10 @@ $woocommerce_settings['catalog'] = apply_filters('woocommerce_catalog_settings',
'std' => 'GBP',
'type' => 'select',
'options' => array(
'kg' => __( 'kg', 'woocommerce' ),
'lbs' => __( 'lbs', 'woocommerce' )
)
'kg' => __( 'kg', 'woocommerce' ),
'g' => __( 'g', 'woocommerce' ),
'lbs' => __( 'lbs', 'woocommerce' ),
),
),
array(
@ -526,10 +527,11 @@ $woocommerce_settings['catalog'] = apply_filters('woocommerce_catalog_settings',
'std' => 'cm',
'type' => 'select',
'options' => array(
'm' => __( 'm', 'woocommerce' ),
'cm' => __( 'cm', 'woocommerce' ),
'in' => __( 'in', 'woocommerce' )
)
),
'mm' => __( 'mm', 'woocommerce' ),
'in' => __( 'in', 'woocommerce' ),
),
array(
'name' => __( 'Cart redirect', 'woocommerce' ),