Paypal 支付标准默认输入卡详细信息 [英] Paypal Payment Standard default enter card details

查看:30
本文介绍了Paypal 支付标准默认输入卡详细信息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我确定这个话题已经在这里了,但我刚刚与 Paypal 通了电话,试图找出他们的帐户中是否有设置可以让客户看到输入卡详细信息区域"而不是自动(默认设置)指导您登录/注册您的贝宝帐户.Paypal 说没有设置可以在他们这边做到这一点,但是当您结帐时,即使您在他们的网站将您转移到贝宝网站进行付款后登录贝宝,moo.com 也会这样做,它会显示输入卡详细信息区域.所以paypal 声称这是moo 的网站告诉paypal 做的事情,而不是相反.我知道许多卖家都遇到了与贝宝拒绝客户相同的问题,因为结账方式显示许多购物者认为它仅适用于贝宝账户持有人.现在我想知道是否有(或可能创建)一个代码让 Maya 告诉贝宝(覆盖它)并显示输入卡详细信息"而不是默认登录/注册?

I'm sure this topic was here already but I just got off the phone with Paypal trying to find out if there is a setting on their accounts that would enable customers to see the "enter card details area" and not automatically (default set) direct you to log in/register to your paypal account. Paypal says there isn't a setting that would do that on their side but moo.com does just that when you checkout even if you are logged into paypal after their site transfers you to paypal site for payment it shows the enter card details area. So paypal claims it is rather something moo's site tells paypal to do and not the other way around. I know many sellers have the same issue with paypal turning away customers because of the way the checkout displays many shoppers conclude it is just for paypal account holders. Now I wonder if there is (or would be possible to create) a code for Maya to tell paypal (override it) and display the "enter card details" and not the log in/register as a default?

我很不擅长解释东西所以很抱歉它太长了.这不是我要求的,这只是我们许多人可能有的想法.谢谢!

I'm very bad for explaining stuff so sorry it's so long. This is not something I demand it's just a thought that probably many of us had. Thanks!

玛姬

推荐答案

这是一个关于 WooCommerce PayPal 标准支持的常见问题,并提供了一些关于所需内容的提示.基本上有两件事:

This is a frequently asked question about WooCommerce PayPal standard support with a few hints as to what is needed. Basically there are two things:

  1. 确保 PayPal 帐户 Optional 处于开启状态

  1. ensure that the PayPal Account Optional is On

不要让 WooCommerce 将用户的电子邮件发送到 PayPal

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

该电子邮件会导致 PayPal 认为该用户拥有一个帐户,因此您可以使用 WooCommerce 过滤器来删除该电子邮件:

The email will cause PayPal to think the user has an account, so you use a WooCommerce 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);

这篇关于Paypal 支付标准默认输入卡详细信息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆