我正在使用带有paypal的多项目购物车
问题是我需要发送一般货运,而不是使用此代码实际发送每件产品的运费:
<input type="hidden" name="shipping_1" value="3.99">
<input type="hidden" name="shipping_2" value="6.99">
但我只需要为整个购物车使用1次运输
所以,如果我使用:
<input type="hidden" name="shipping" value="6.99">
它不会在paypal上显示
答案 0 :(得分:0)
shipping_x
应该有用。
<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="upload" value="1">
<input type="hidden" name="business" value="XXX@gmail.com">
<input type="hidden" name="currency_code" value="US">
<input type="hidden" name="item_name_1" value="beach ball">
<input type="hidden" name="amount_1" value="15">
<input type="hidden" name="item_name_2" value="towel">
<input type="hidden" name="amount_2" value="20">
<input type="hidden" name="shipping_1" value="5.00">
<input type="hidden" name="shipping_2" value="2.00">
<input type="image" src="http://www.paypal.com/en_US/i/btn/x-click-but01.gif" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
</form>
虽然传递了shipping_x,但结帐页面会显示为shipping=7
或者您可以设置profile based shipping