Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经尝试添加“税”字段,但是在我的结帐中没有显示任何与税相关的内容。如何在 Paypal 结账时添加税额?
我猜你现在已经找到了答案,但是为了其他人通过谷歌找到这个问题:
如果您尝试向购物车添加税款,变量名称会从“tax”更改为“tax_cart”,如下所示(对于 8% 的税):
<input type="hidden" name="tax_cart" value="<?php echo number_format(($price * 0.08),2); ?>">