Mollie Payments for WooCommerce - Version 4.0.0-beta4

Version Description

  • 03-07-2018 =

IMPORTANT Version 4.0 requires PHP 5.6 or higher. If you are using an older PHP version, please read this article: PHP & Mollie API v2.

  • Fix "Couldn't create * payment", temporarily disable sending the address details to Mollie for fraud detection, payments not allowed if one of the fields is missing
  • Fix "Call to undefined function get_current_screen()" that can happen on some screens

  • Multicurrency support for WooCommerce added

  • New payment methods EPS and GiroPay added

  • Updated payment method logo's (better quality SVG's)

  • Updated Mollie API PHP to 2.0.5

  • Add support for failed regular payments (already had support for failed renewal payments)

  • In WooCommerce order edit view, add direct link to payment in Mollie Dashboard

  • Add notice to use bank transfer via Mollie, not default BACS gateway

  • Add support for new refunds and chargebacks processing (that are initiated in Mollie Dashboard)

Download this release

Release Info

Developer davdebcom
Plugin Icon wp plugin Mollie Payments for WooCommerce
Version 4.0.0-beta4
Comparing to
See all releases

Code changes from version 4.0.0-beta3 to 4.0.0-beta4

includes/mollie/wc/gateway/abstract.php CHANGED
@@ -598,8 +598,8 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
598
  'method' => $mollie_method,
599
  'issuer' => $selected_issuer,
600
  'locale' => $payment_locale,
601
- 'billingAddress' => $billingAddress,
602
- 'shippingAddress' => $shippingAddress,
603
  'metadata' => array (
604
  'order_id' => $order->id,
605
  ),
@@ -638,8 +638,8 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
638
  'method' => $mollie_method,
639
  'issuer' => $selected_issuer,
640
  'locale' => $payment_locale,
641
- 'billingAddress' => $billingAddress,
642
- 'shippingAddress' => $shippingAddress,
643
  'metadata' => array (
644
  'order_id' => $order->get_id(),
645
  ),
598
  'method' => $mollie_method,
599
  'issuer' => $selected_issuer,
600
  'locale' => $payment_locale,
601
+ //'billingAddress' => $billingAddress,
602
+ //'shippingAddress' => $shippingAddress,
603
  'metadata' => array (
604
  'order_id' => $order->id,
605
  ),
638
  'method' => $mollie_method,
639
  'issuer' => $selected_issuer,
640
  'locale' => $payment_locale,
641
+ //'billingAddress' => $billingAddress,
642
+ //'shippingAddress' => $shippingAddress,
643
  'metadata' => array (
644
  'order_id' => $order->get_id(),
645
  ),
mollie-payments-for-woocommerce.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Mollie Payments for WooCommerce
4
  * Plugin URI: https://www.mollie.com
5
  * Description: Accept payments in WooCommerce with the official Mollie plugin
6
- * Version: 4.0.0-beta3
7
  * Author: Mollie
8
  * Author URI: https://www.mollie.com
9
  * Requires at least: 3.8
3
  * Plugin Name: Mollie Payments for WooCommerce
4
  * Plugin URI: https://www.mollie.com
5
  * Description: Accept payments in WooCommerce with the official Mollie plugin
6
+ * Version: 4.0.0-beta4
7
  * Author: Mollie
8
  * Author URI: https://www.mollie.com
9
  * Requires at least: 3.8
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: daanvm, davdebcom, l.vangunst, ndijkstra, robin-mollie
3
  Tags: mollie, payments, woocommerce, payment gateway, e-commerce, credit card, ideal, sofort, bancontact, bitcoin, direct debit, subscriptions
4
  Requires at least: 3.8
5
  Tested up to: 4.9
6
- Stable tag: 4.0.0-beta3
7
  Requires PHP: 5.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -169,6 +169,24 @@ Automatic updates should work like a charm; as always though, ensure you backup
169
 
170
  == Changelog ==
171
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  = 4.0.0-beta3 - 02-07-2018 =
173
 
174
  IMPORTANT
3
  Tags: mollie, payments, woocommerce, payment gateway, e-commerce, credit card, ideal, sofort, bancontact, bitcoin, direct debit, subscriptions
4
  Requires at least: 3.8
5
  Tested up to: 4.9
6
+ Stable tag: 4.0.0-beta4
7
  Requires PHP: 5.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
169
 
170
  == Changelog ==
171
 
172
+ = 4.0.0-beta4 - 03-07-2018 =
173
+
174
+ IMPORTANT
175
+ Version 4.0 requires PHP 5.6 or higher. If you are using an older PHP version, please read this article: [PHP & Mollie API v2](https://github.com/mollie/WooCommerce/wiki/PHP-&-Mollie-API-v2).
176
+
177
+ * Fix "Couldn't create * payment", temporarily disable sending the address details to Mollie for fraud detection, payments not allowed if one of the fields is missing
178
+ * Fix "Call to undefined function get_current_screen()" that can happen on some screens
179
+
180
+ * [Multicurrency support for WooCommerce added](https://www.mollie.com/en/features/multicurrency/)
181
+ * [New payment methods EPS and GiroPay added](https://www.mollie.com/en/news/post/introducing-two-new-payment-methods-eps-and-giropay)
182
+ * Updated payment method logo's (better quality SVG's)
183
+ * Updated Mollie API PHP to 2.0.5
184
+
185
+ * Add support for failed regular payments (already had support for failed renewal payments)
186
+ * In WooCommerce order edit view, add direct link to payment in Mollie Dashboard
187
+ * Add notice to use bank transfer via Mollie, not default BACS gateway
188
+ * Add support for new refunds and chargebacks processing (that are initiated in Mollie Dashboard)
189
+
190
  = 4.0.0-beta3 - 02-07-2018 =
191
 
192
  IMPORTANT