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