2011-10-28 9 views
2

PayPalをウェブサイトに実装する際に問題が発生しています。私はしばらくそれを使用していないし、多くのことが以来変わっています。Paypalの送料が無効な変数

問題は、「paypalアカウントなし」オプションが選択されている場合、船積み情報がとにかく尋ねられたときに、ユーザーに配送先住所の入力を求める必要がないことを明確に指定していることです。

私はPayPalに尋ねるべきであることを知っていますが、ここでは人々はよりスマートで親切です。 =)

コード:

注:<input type="hidden" name="no_shipping" value="1">

<form action="https://www.paypal.com/cgi-bin/webscr" method="post"> 
<!-- Identify your business so that you can collect the payments. --> 
<input type="hidden" name="business" value="[email protected]"> 
<!-- Specify a Buy Now button. --> 
<input type="hidden" name="cmd" value="_xclick"> 


<!-- Variables agregadas --> 
<input type="hidden" name="notify_url" value="notify.php"> 
<input type="hidden" name="return" value="return.php"> 
<input type="hidden" name="cancel_return" value="cancel_return.php"> 



<input type="hidden" name="page_style" value="primary"> 
<input type="hidden" name="lc" value="EN"> 
<input type="hidden" name="no_note" value="1"> 
<input type="hidden" name="no_shipping" value="1"> 



<!-- Specify details about the item that buyers will purchase. --> 
<input type="hidden" name="item_name" value="Ziced id:"> 
<input type="hidden" name="amount" value="10"> 
<input type="hidden" name="currency_code" value="EUR"> 
<input type="hidden" name="quantity" value="1"> 





<!-- Display the payment button. --> 
<input type="image" name="submit" border="0" 
src="https://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" 
alt="PayPal - The safer, easier way to pay online"> 
<img alt="" border="0" width="1" height="1" 
src="https://www.paypal.com/en_US/i/scr/pixel.gif" > 
</form> 

答えて

6

no_shipping=1は、配送先住所に適用されます。 「ゲストチェックアウトフォーム」のバイヤーには、請求先住所が表示されます。それは常に必要となるでしょう。ここで

3

は、他の人のために少しより多くの情報です:

<input type="hidden" name="no_shipping" value="0"> - prompt for shipping address, but do not require one 
<input type="hidden" name="no_shipping" value="1"> - do not prompt for shipping address 
<input type="hidden" name="no_shipping" value="2"> - prompt for shipping address, and require one 

も参照してください:Paypal Address Handling Guide

関連する問題