mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-04 08:47:23 +08:00
Merge pull request #1967 from woocommerce/enable-vault-v3-by-default
Enable vault v3 by default
This commit is contained in:
commit
f26a8247d8
1 changed files with 2 additions and 2 deletions
|
@ -55,14 +55,14 @@ return function ( string $root_dir ): iterable {
|
|||
|
||||
if ( apply_filters(
|
||||
'woocommerce.feature-flags.woocommerce_paypal_payments.card_fields_enabled',
|
||||
getenv( 'PCP_CARD_FIELDS_ENABLED' ) === '1'
|
||||
getenv( 'PCP_CARD_FIELDS_ENABLED' ) !== '0'
|
||||
) ) {
|
||||
$modules[] = ( require "$modules_dir/ppcp-card-fields/module.php" )();
|
||||
}
|
||||
|
||||
if ( apply_filters(
|
||||
'woocommerce.feature-flags.woocommerce_paypal_payments.save_payment_methods_enabled',
|
||||
getenv( 'PCP_SAVE_PAYMENT_METHODS' ) === '1'
|
||||
getenv( 'PCP_SAVE_PAYMENT_METHODS' ) !== '0'
|
||||
) ) {
|
||||
$modules[] = ( require "$modules_dir/ppcp-save-payment-methods/module.php" )();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue