Skip to content

Commit

Permalink
Merge branch 'release/2.3.9' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
remcotolsma committed Aug 29, 2018
2 parents 842fc6a + d865c14 commit 9d8d579
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions changelog.txt
@@ -1,5 +1,8 @@
*** EU VAT Number Changelog ***

2018-08-20 - version 2.3.9
* Fix - VAT numbers were removed when order is saved.

2018-08-02 - version 2.3.8
* Fix - Properly handle shipping address depending on 'Ship to different address' checked or not.

Expand Down
2 changes: 1 addition & 1 deletion includes/class-wc-eu-vat-admin.php
Expand Up @@ -45,7 +45,7 @@ public static function admin_billing_fields( $fields ) {
$fields['vat_number'] = array(
'label' => __( 'VAT Number', 'woocommerce-eu-vat-number' ),
'show' => false,
'id' => '_vat_number',
'id' => '_billing_vat_number',
);
return $fields;
}
Expand Down
6 changes: 3 additions & 3 deletions woocommerce-eu-vat-number.php
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: WooCommerce EU VAT Number
* Plugin URI: https://woocommerce.com/products/eu-vat-number/
* Description: The EU VAT Number extension lets you collect and validate EU VAT numbers during checkout to identify B2B transactions verses B2C. IP Addresses can also be validated to ensure they match the billing address. EU businesses with a valid VAT number can have their VAT removed prior to payment.
* Version: 2.3.8
* Version: 2.3.9
* Author: WooCommerce
* Author URI: https://woocommerce.com/
* Text Domain: woocommerce-eu-vat-number
Expand All @@ -13,7 +13,7 @@
* WC requires at least: 2.6
* WC tested up to: 3.4
*
* Copyright: © 2009-2017 WooCommerce.
* Copyright: © 2018 WooCommerce.
* License: GNU General Public License v3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
*
Expand All @@ -25,7 +25,7 @@
require_once( 'woo-includes/woo-functions.php' );
}

define( 'WC_EU_VAT_VERSION', '2.3.8' );
define( 'WC_EU_VAT_VERSION', '2.3.9' );
define( 'WC_EU_VAT_FILE', __FILE__ );
define( 'WC_EU_VAT_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );

Expand Down

0 comments on commit 9d8d579

Please sign in to comment.