From a951d165130eae53469017ca17b01ac28cedfc20 Mon Sep 17 00:00:00 2001 From: carmenmaymo Date: Fri, 26 Apr 2024 10:41:01 +0200 Subject: [PATCH 1/2] Create release 7.5.3 --- mollie-payments-for-woocommerce.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mollie-payments-for-woocommerce.php b/mollie-payments-for-woocommerce.php index e87005d1..e8ad12e8 100644 --- a/mollie-payments-for-woocommerce.php +++ b/mollie-payments-for-woocommerce.php @@ -3,7 +3,7 @@ * Plugin Name: Mollie Payments for WooCommerce * Plugin URI: https://www.mollie.com * Description: Accept payments in WooCommerce with the official Mollie plugin - * Version: 7.5.2 + * Version: 7.5.3-beta * Author: Mollie * Author URI: https://www.mollie.com * Requires at least: 5.0 From 3d8cbff0685d9766810c95484b64b5b213d99725 Mon Sep 17 00:00:00 2001 From: carmenmaymo Date: Tue, 14 May 2024 09:06:31 +0200 Subject: [PATCH 2/2] Add subscription to paypal --- src/PaymentMethods/Paypal.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/PaymentMethods/Paypal.php b/src/PaymentMethods/Paypal.php index e3713f01..d2005a12 100644 --- a/src/PaymentMethods/Paypal.php +++ b/src/PaymentMethods/Paypal.php @@ -18,10 +18,12 @@ protected function getConfig(): array 'supports' => [ 'products', 'refunds', + 'subscriptions', ], 'filtersOnBuild' => false, 'confirmationDelayed' => false, 'SEPA' => false, + 'Subscription' => true, ]; }