我正在使用PayPal Payments Standard和我自己的按钮代码,如下所示。除了一件事,这完全符合我的意愿。在PayPal购物车和发票上,显示屏显示“运输和处理”。在加利福尼亚州,我必须缴纳手续费。我是否可以在没有“处理?
的情况下使显示器显示为”运送“我尝试传递“处理”和“处理购物车”输入属性,其中包含空值和零值,但没有影响。
<form target="paypal" action="<?=PAYPAL_URL?>" method="post">
<input type="hidden" name="business" value="<?=PAYPAL_BUSINESS?>">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="add" value="1">
<input type="hidden" name="amount" value="12.50">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="shopping_url" value="<?=$url?>">
<input type="hidden" name="shipping" value="5.00" />
<input type="hidden" name="shipping2" value="5.00">
<input type="hidden" name="item_name" value="stain">
<input type="image" src="images/add_to_cart.png" border="0" name="submit" alt="Add to Cart">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>