Merge pull request #3242 from woocommerce/PCP-4385-failed-to-fetch-onboarding-url-error-when-onboarding-with-no-rt-merchant-and-selecting-subscriptions-product

Do not add the capabilities if is not eligible for ACDC (4385)
This commit is contained in:
Emili Castells 2025-03-24 09:31:30 +01:00 committed by GitHub
commit 3b48f8a70d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 54 additions and 9 deletions

View file

@ -88,7 +88,10 @@ class PartnerReferralsData {
);

if ( true === $use_subscriptions ) {
$capabilities[] = 'PAYPAL_WALLET_VAULTING_ADVANCED';
if ( $this->dcc_applies->for_country_currency() ) {
$capabilities[] = 'PAYPAL_WALLET_VAULTING_ADVANCED';
}

$first_party_features[] = 'BILLING_AGREEMENT';
}