Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions changelog/chore-change-affirm-minimum-amount
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: update

update: Affirm minimum amount from 50 to 35
8 changes: 4 additions & 4 deletions includes/class-wc-payments-utils.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 [
Expand Down
Loading