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 ab017f048f9..3a7b46da395 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 [