试图为买家设置送货地址

时间:2013-07-01 10:48:04

标签: php paypal sandbox shipping

我正在尝试设置一个按钮,为买家提供插入倍数的选项 的项目并强制他们输入送货地址这里是代码:

 <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." /> 

我正在沙盒中测试它并且数量选项工作正常但似乎没有选择送货地址,如果有人可以帮我这个我真的很感激。< / p>

1 个答案:

答案 0 :(得分:0)

no_shipping变量确定您是否在付款完成后收到包含交易详情的送货地址。结帐页面上没有出货地址字段。买方需要登录其帐户才能选择用于完成付款的送货地址。