WCPay: Update supported countries (https://github.com/woocommerce/woocommerce-admin/pull/7048)
* WCPay: Update supported countries * Add readme entry
This commit is contained in:
parent
a85ce2f171
commit
7681f09d18
|
@ -4,7 +4,17 @@ export function isWCPaySupported( countryCode ) {
|
|||
window.wcAdminFeatures &&
|
||||
window.wcAdminFeatures[ 'wcpay/support-international-countries' ]
|
||||
) {
|
||||
supportedCountries.push( 'AU', 'CA', 'GB', 'IE', 'NZ' );
|
||||
supportedCountries.push(
|
||||
'AU',
|
||||
'CA',
|
||||
'DE',
|
||||
'ES',
|
||||
'FR',
|
||||
'GB',
|
||||
'IE',
|
||||
'IT',
|
||||
'NZ'
|
||||
);
|
||||
}
|
||||
return supportedCountries.includes( countryCode );
|
||||
}
|
||||
|
|
|
@ -115,6 +115,7 @@ Release and roadmap notes are available on the [WooCommerce Developers Blog](htt
|
|||
- Tweak: Only fetch remote payment gateway recommendations when opted in #6964
|
||||
- Tweak: Setup checklist copy revert. #7015
|
||||
- Tweak: Store profiler - Changed MailPoet's title and description #6990
|
||||
- Tweak: Adjust WC Pay supported countries #7048
|
||||
- Update: Task list component with new Experimental Task list. #6849
|
||||
- Update: Experimental task list import to the experimental package. #6950
|
||||
- Update: Redirect to WC Home after setting up a payment method #6891
|
||||
|
|
Loading…
Reference in New Issue