我正在使用Google Checkout实施Donate Now系统。要弄清楚的一个非常令人沮丧的部分是如何不要求用户为他们的捐赠输入送货地址(因为这是纯粹的捐赠,不需要送货地址)。我找到了Digital Delivery的文档以及向产品添加类的功能,但我只是使用由Google生成的Donate Now表单,并且不知道在哪里添加此类以使其成为所以不需要送货地址
以下是我正在使用的表格:
<form action="https://sandbox.google.com/checkout/api/checkout/v2/checkoutForm/Merchant/MY_NUMBER" id="BB_BuyButtonForm" method="post" name="BB_BuyButtonForm" onSubmit="return adjustDescription()" target="_top">
<input name="item_name_1" type="hidden" value="Donation"/>
<input name="item_description_1" type="hidden" value="Donation Description"/>
<input name="item_quantity_1" type="hidden" value="1"/>
<input name="item_currency_1" type="hidden" value="USD"/>
<input name="item_is_modifiable_1" type="hidden" value="true"/>
<input name="item_min_price_1" type="hidden" value="0.01"/>
<input name="item_max_price_1" type="hidden" value="25000.0"/>
<input name="_charset_" type="hidden" value="utf-8"/>
<input id="item_price_1" class="center" name="item_price_1" type="text" />
<input disabled style="opacity:0.6;" name="donate_submit" alt="Donate" src="https://sandbox.google.com/checkout/buttons/donateNow.gif?merchant_id=MY_NUMBER&w=115&h=50&style=white&variant=text&loc=en_US" type="image" />
所以我不确定是否有另一种方法可以不要求送货地址,但是如果有人能告诉我在哪里放置“产品 - 数字”类来实现这一点,那将会有所帮助。