🐛 Enable the PayPal method after onboarding

This gateway should be active for every merchant right after onboarding, regardless of seller-type of onboarding choices.
This commit is contained in:
Philipp Stracker 2025-02-14 16:19:44 +01:00
parent be6cbd465f
commit 5afdc815ef
No known key found for this signature in database

View file

@ -211,7 +211,8 @@ class SettingsDataManager {
$this->payment_methods->toggle_method_state( $method['id'], false );
}
// Always enable Venmo and Pay Later.
// Always enable PayPal, Venmo and Pay Later.
$this->payment_methods->toggle_method_state( PayPalGateway::ID, true );
$this->payment_methods->toggle_method_state( 'venmo', true );
$this->payment_methods->toggle_method_state( 'pay-later', true );