From 1cd71e29e4912db041a3172a1b4c6fb0d7cad329 Mon Sep 17 00:00:00 2001 From: Mike Jolley Date: Mon, 13 Jun 2016 17:46:55 +0100 Subject: [PATCH] Default shipping tax class should be blank, not 'title' #11103 --- includes/admin/settings/views/settings-tax.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/admin/settings/views/settings-tax.php b/includes/admin/settings/views/settings-tax.php index ca613e9f4ca..235166b44b8 100644 --- a/includes/admin/settings/views/settings-tax.php +++ b/includes/admin/settings/views/settings-tax.php @@ -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,