0

我正在尝试设置一个按钮,为买家提供插入多个商品的选项并强制他们输入送货地址,代码如下:

 <form action="<?php echo($paypal_url); ?>" method="post"> 
 <!-- Identify your business so that you can collect the payments. --> 
 <input type="hidden" name="business" value="<?php echo($paypal_email_address); ?>"> 

 <!-- Specify a Buy Now button. --> 
 <input type="hidden" name="cmd" value="_xclick"> 

 <!-- Specify details about the item that buyers will purchase. --> 
 <input type="hidden" name="item_name" value="<?php echo($item_name3); ?>"> 
 <input type="hidden" name="amount" value="<?php echo($item_price3); ?>">  
 <input type="hidden" name="currency_code" value="<?php echo($item_currency3); ?>"> 
 <input type="hidden" name="custom" value="<?php echo($mask); ?>">
 <input type="hidden" name="undefined_quantity" value="1">
 <input type="hidden" name="return" value="<?php echo($paypal_return); ?>">
 <input type="hidden" name="notify_url"value="http://www.mywebsite.co.uk/ipn2.php">
 <input type="hidden" name="cancel_return" value="<?php echo($cancel_return); ?>">
 <input type="hidden" name="no_note" value="1">
 <input type="hidden" name="no_shipping" value="2">

 <!-- Display the payment button. -->
 <input type="image" src="/img/PocketMask.png" border="0" name="submit" alt="PayPal - The safer, easier way to pay online." /> 

我正在沙箱中对其进行测试,数量选项工作正常,但似乎没有送货地址选项,如果有人可以帮助我,我将不胜感激。

4

1 回答 1

0

no_shipping变量确定您是否在付款完成后收到带有交易详细信息的送货地址。结帐页面上不会出现送货地址字段。买家需要登录他们的帐户以选择用于完成付款的送货地址。

于 2013-07-01T21:12:37.600 回答