【问题标题】:Remove delivery address from Paypal checkout?从 Paypal 结帐中删除送货地址?
【发布时间】:2017-06-02 15:16:24
【问题描述】:

我的网站上有一个 Paypal 表单,但由于某种原因,当用户转到 Paypal 网站上的结帐页面时,它显示了他们的“送货地址”。有谁知道我可以如何删除它?谢谢

        <section style="background-color:white;border-radius:25px;" 
id="three" class="wrapper style3 special">
                    <div class="container 50%">


                  <form id="Order" name="Order" 
 action="https://www.paypal.com/cgi-bin/webscr" method="post">
<h2 style="color:black;">Your Page:</h2>    <input type="hidden" 
name="on0" value="URL" />
<input style="border:1px solid grey;" name="os0" type="text" 
class="formtext" />
<br />
<br />
<br />
<h2 style="color:black;">Your Email Address:</h2>
<input type="hidden" name="on1" value="EMAIL" />
 <input style="border:1px solid grey;" name="os1" type="text" 
class="formtext" />
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="<?php echo $paypalemail; ?>">
<input type="hidden" name="lc" value="U">
<input type="hidden" name="item_name" value="My Product Name">
<input type="hidden" name="amount" value="<?php echo $bronze_price; ?>">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="button_subtype" value="services">
<input type="hidden" name="no_note" value="0">
<input type="hidden" name="cn" value="Add special instructions to the 
seller">
<br />
<br />
<table width="50px" border="0" cellpadding="0" cellspacing="0">
<p style="color:black;">You have read and agreed to our <a style="text-
decoration:underline;" href="http://mywebsite.com/terms-of-service" 
target="_blank">Terms of Service</a>  
              <tr onclick="document['Order'].submit()">
  <td style="background-color:#3cadd4;width:5px;cursor: pointer;"><div><a 
style="color:white;" href="#" onclick="document['Order'].submit()">PAY 
NOW</a> 
</div></td>

</tr>

</table>
    <p style="color:black;">Price: $<?php echo $bronze_price; ?></p>

</form>
</div>
</section>

【问题讨论】:

    标签: paypal


    【解决方案1】:

    请在 PayPal 按钮代码中传递参数“no_shipping =1”,然后在 PayPal 结帐页面上将删除收货地址。

    no_shipping No
    不要提示买家提供送货地址。

    有效值为:

    0 - 提示输入地址,但不需要。

    1 - 不提示输入地址。

    2 - 提示输入地址并要求提供。

    默认为 0。

    有关 PayPal 按钮 HTML 变量的更多信息,请参阅以下链接:https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/

    【讨论】:

      猜你喜欢
      • 2019-02-11
      • 2014-04-16
      • 2019-04-01
      • 1970-01-01
      • 2011-09-23
      • 2017-07-06
      • 2017-04-17
      • 2014-08-05
      • 1970-01-01
      相关资源
      最近更新 更多