Default shipping tax class should be blank, not 'title'

#11103
This commit is contained in:
Mike Jolley 2016-06-13 17:46:55 +01:00
parent a74ca33b10
commit 1cd71e29e4
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ return apply_filters( 'woocommerce_tax_settings', array(
'desc' => __( 'Optionally control which tax class shipping gets, or leave it so shipping tax is based on the cart items themselves.', 'woocommerce' ),
'id' => 'woocommerce_shipping_tax_class',
'css' => 'min-width:150px;',
'default' => 'title',
'default' => '',
'type' => 'select',
'class' => 'wc-enhanced-select',
'options' => array( '' => __( 'Shipping tax class based on cart items', 'woocommerce' ), 'standard' => __( 'Standard', 'woocommerce' ) ) + $classes_options,