Add support for Venmo button with vault v3

This commit is contained in:
Pedro Silva 2024-01-15 16:55:36 +00:00
parent af577c130f
commit 751edc8353
No known key found for this signature in database
GPG key ID: E2EE20C0669D24B3
2 changed files with 17 additions and 0 deletions

View file

@ -329,6 +329,13 @@ class SavePaymentMethodsModule implements ModuleInterface {
$endpoint->handle_request();
}
);
add_filter(
'woocommerce_paypal_payments_save_payment_methods_eligible',
function() {
return true;
}
);
}
/**