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

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

问题描述

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

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帐户可选"已启用

  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);

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

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