From ce49edaae85dccb8cd03f92bb1fd767d7c78e10a Mon Sep 17 00:00:00 2001 From: frosso Date: Fri, 30 May 2025 17:52:53 +0200 Subject: [PATCH] update: Affirm minimum amount from 50 to 35 --- changelog/chore-change-affirm-minimum-amount | 4 ++++ includes/class-wc-payments-utils.php | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) create mode 100644 changelog/chore-change-affirm-minimum-amount diff --git a/changelog/chore-change-affirm-minimum-amount b/changelog/chore-change-affirm-minimum-amount new file mode 100644 index 00000000000..bb8831deb22 --- /dev/null +++ b/changelog/chore-change-affirm-minimum-amount @@ -0,0 +1,4 @@ +Significance: patch +Type: update + +update: Affirm minimum amount from 50 to 35 diff --git a/includes/class-wc-payments-utils.php b/includes/class-wc-payments-utils.php index 91ab167a2dc..dc5e1c94434 100644 --- a/includes/class-wc-payments-utils.php +++ b/includes/class-wc-payments-utils.php @@ -734,16 +734,16 @@ public static function get_bnpl_limits_per_currency( $payment_method ) { return [ Currency_Code::CANADIAN_DOLLAR => [ Country_Code::CANADA => [ - 'min' => 5000, + 'min' => 3500, 'max' => 3000000, - ], // Represents CAD 50 - 30,000 CAD. + ], // Represents CAD 35 - 30,000 CAD. ], Currency_Code::UNITED_STATES_DOLLAR => [ Country_Code::UNITED_STATES => [ - 'min' => 5000, + 'min' => 3500, 'max' => 3000000, ], - ], // Represents USD 50 - 30,000 USD. + ], // Represents USD 35 - 30,000 USD. ]; case 'afterpay_clearpay': return [