Paypal Default payment standard enters card details

I'm sure this thread was already here, but I just got off my phone with Paypal trying to figure out if there is a setting on their accounts that will allow customers to see "enter card information" rather than automatically (default). so you can sign in / register for your PayPal account. Paypal says there is no setting to do this on their side, but moo.com does exactly that when you check out, even if you are logged into PayPal after their site takes you to PayPal to pay, it shows map information area. Therefore, paypal claims that it is rather something that the moo site says to paypal, rather than the other way around. I know a lot of sellers have the same problem when paypal turns away customers due to how there are many buyers in the checkout who conclude,that it's easy for cardholders. Now I am wondering if there is (or could be created) code for Maya to tell paypal (override it) and display "enter card details" rather than login / register as the default?

I am very poor at materials, so sorry it took so long. This is not what I demand from him just a thought, which probably many of us had. Thank!

Maggie

+1


source to share


2 answers


This is a frequently asked question about WooCommerce PayPal standard support with a few tips as to what is needed. There are basically two things:

  • make sure PayPal account is additionally enabled.

  • Don't let WooCommerce send user's email to PayPal



This email will make PayPal think the user has an account, so you use the WooCommerce filter to delete the email:

function smw_woo_paypal_args($args) {
    $args['email'] = '';
    return $args;
}
add_filter( 'woocommerce_paypal_args', 'smw_woo_paypal_args', 99);

      

+1


source


If you are using Express Checkout , you can set SOLUTIONTYPE = Sole and LANDINGPAGE = Billing to force payment by credit card instead of signing into a PayPal account.



You will also need to make sure PayPal Account Optional is disabled in your PayPal account profile under Website Payment Settings.

0


source







All Articles