Woocommerce PayPal show credit card form
-
PayPay Standard will assume that you have an account if either you have a PayPal cookie or an email is sent to the PayPal. WooCommerce sends your email to PayPal form. To prevent this you can use the woocommerce_paypal_args filter to remove the email.
function smw_woo_paypal_args($args) {
$args[’email’] = ”;
return $args;
}
add_filter( ‘woocommerce_paypal_args’, ‘smw_woo_paypal_args’, 99);You also need to ensure that the PayPal option “PayPal Account Optionsl” is on.
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Woocommerce PayPal show credit card form’ is closed to new replies.