WooCommerce Germanized - Version 1.8.3

Version Description

  • Fix - Is empty check in 1.8.2
  • Fix - API free shipping
  • Fix - Clean SEPA XML whitespaces
  • Fix - WC 2.7 RC 1 compatibility
  • Fix - WPML Compatibility improvements
  • Fix - Tax Rate adjustments for LU and RO
  • Fix - Labels Price HTML
  • Fix - Add to cart variation js preserving markup
  • Fix - Removed direct debit gateway subscriptions support (not yet prepared)
  • Feature - Added plugin version cache deletion tool to system status
Download this release

Release Info

Developer vendidero
Plugin Icon 128x128 WooCommerce Germanized
Version 1.8.3
Comparing to
See all releases

Code changes from version 1.8.2 to 1.8.3

includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php CHANGED
@@ -109,7 +109,7 @@ class WC_Germanized_Meta_Box_Product_Data {
109
  'style' => 'width: 50%',
110
  ) );
111
 
112
- $args[ 'id' ] = empty( $args[ 'id' ] ? $args[ 'name' ] : $args[ 'id' ] );
113
 
114
  if ( WC_GZD_Dependencies::instance()->woocommerce_version_supports_crud() ) {
115
  ?>
109
  'style' => 'width: 50%',
110
  ) );
111
 
112
+ $args[ 'id' ] = empty( $args[ 'id' ] ) ? $args[ 'name' ] : $args[ 'id' ];
113
 
114
  if ( WC_GZD_Dependencies::instance()->woocommerce_version_supports_crud() ) {
115
  ?>
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: vendidero
3
  Tags: woocommerce, german market, german, germany, deutsch, deutschland, de, de_DE, shop, commerce, e-commerce, ecommerce, woothemes, sepa, invoice
4
  Requires at least: 3.8
5
  Tested up to: 4.7
6
- Stable tag: 1.8.2
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -157,6 +157,18 @@ Bug reports may be filed via our [GitHub repository](https://github.com/vendider
157
 
158
  == Changelog ==
159
 
 
 
 
 
 
 
 
 
 
 
 
 
160
  = 1.8.2 =
161
  * Fix - API free shipping
162
  * Fix - Clean SEPA XML whitespaces
3
  Tags: woocommerce, german market, german, germany, deutsch, deutschland, de, de_DE, shop, commerce, e-commerce, ecommerce, woothemes, sepa, invoice
4
  Requires at least: 3.8
5
  Tested up to: 4.7
6
+ Stable tag: 1.8.3
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
157
 
158
  == Changelog ==
159
 
160
+ = 1.8.3 =
161
+ * Fix - Is empty check in 1.8.2
162
+ * Fix - API free shipping
163
+ * Fix - Clean SEPA XML whitespaces
164
+ * Fix - WC 2.7 RC 1 compatibility
165
+ * Fix - WPML Compatibility improvements
166
+ * Fix - Tax Rate adjustments for LU and RO
167
+ * Fix - Labels Price HTML
168
+ * Fix - Add to cart variation js preserving markup
169
+ * Fix - Removed direct debit gateway subscriptions support (not yet prepared)
170
+ * Feature - Added plugin version cache deletion tool to system status
171
+
172
  = 1.8.2 =
173
  * Fix - API free shipping
174
  * Fix - Clean SEPA XML whitespaces
woocommerce-germanized.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: WooCommerce Germanized
4
  * Plugin URI: https://www.vendidero.de/woocommerce-germanized
5
  * Description: Extends WooCommerce to become a legally compliant store for the german market.
6
- * Version: 1.8.2
7
  * Author: Vendidero
8
  * Author URI: https://vendidero.de
9
  * Requires at least: 3.8
@@ -28,7 +28,7 @@ final class WooCommerce_Germanized {
28
  *
29
  * @var string
30
  */
31
- public $version = '1.8.2';
32
 
33
  /**
34
  * Single instance of WooCommerce Germanized Main Class
3
  * Plugin Name: WooCommerce Germanized
4
  * Plugin URI: https://www.vendidero.de/woocommerce-germanized
5
  * Description: Extends WooCommerce to become a legally compliant store for the german market.
6
+ * Version: 1.8.3
7
  * Author: Vendidero
8
  * Author URI: https://vendidero.de
9
  * Requires at least: 3.8
28
  *
29
  * @var string
30
  */
31
+ public $version = '1.8.3';
32
 
33
  /**
34
  * Single instance of WooCommerce Germanized Main Class