mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
Merge branch 'trunk' into PCP-2768-zero-sum-subscriptions-cause-cannot-be-zero-or-negative-when-using-vault-v-3
This commit is contained in:
commit
6416819a59
3 changed files with 4 additions and 2 deletions
|
@ -5,6 +5,7 @@
|
|||
* Fix - Pay upon Invoice: Add input validation to Experience Context fields #2092
|
||||
* Fix - Disable markup in get_plugin_data() returns to fix an issue with wptexturize() #2094
|
||||
* Fix - Problem changing the shipping option in block pages #2142
|
||||
* Fix - Saved payment token deleted after payment with another saved payment token #2146
|
||||
* Enhancement - Pay later messaging configurator improvements #2107
|
||||
* Enhancement - Replace the middleware URL from connect.woocommerce.com to api.woocommerce.com/integrations #2130
|
||||
* Enhancement - Remove all Sofort references as it has been deprecated #2124
|
||||
|
|
|
@ -141,7 +141,7 @@ class SavePaymentMethodsModule implements ModuleInterface {
|
|||
'vault' => array(
|
||||
'store_in_vault' => 'ON_SUCCESS',
|
||||
'usage_type' => 'MERCHANT',
|
||||
'permit_multiple_payment_tokens' => apply_filters( 'woocommerce_paypal_payments_permit_multiple_payment_tokens', true ),
|
||||
'permit_multiple_payment_tokens' => apply_filters( 'woocommerce_paypal_payments_permit_multiple_payment_tokens', false ),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
@ -167,7 +167,7 @@ class SavePaymentMethodsModule implements ModuleInterface {
|
|||
'vault' => array(
|
||||
'store_in_vault' => 'ON_SUCCESS',
|
||||
'usage_type' => 'MERCHANT',
|
||||
'permit_multiple_payment_tokens' => apply_filters( 'woocommerce_paypal_payments_permit_multiple_payment_tokens', true ),
|
||||
'permit_multiple_payment_tokens' => apply_filters( 'woocommerce_paypal_payments_permit_multiple_payment_tokens', false ),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
|
|
@ -184,6 +184,7 @@ If you encounter issues with the PayPal buttons not appearing after an update, p
|
|||
* Fix - Pay upon Invoice: Add input validation to Experience Context fields #2092
|
||||
* Fix - Disable markup in get_plugin_data() returns to fix an issue with wptexturize() #2094
|
||||
* Fix - Problem changing the shipping option in block pages #2142
|
||||
* Fix - Saved payment token deleted after payment with another saved payment token #2146
|
||||
* Enhancement - Pay later messaging configurator improvements #2107
|
||||
* Enhancement - Replace the middleware URL from connect.woocommerce.com to api.woocommerce.com/integrations #2130
|
||||
* Enhancement - Remove all Sofort references as it has been deprecated #2124
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue