问题描述
我有 2 件商品要出售.我的运费基本价格为 7.50 美元和 2.00 美元/每件额外商品
I have 2 items for sale. I have a shipping base price of $7.50 and $2.00/per additional item
我已经设置了高级代码
运费=$7.50运费 2=$2.00
Shipping=$7.50Shipping2=$2.00
一切正常,除非将不同的商品添加到购物车,购物车会再次或两次收取基本价格(7.50 美元)
Everything works fine, except when a different item is added to cart, the cart charges the base price ($7.50) again or twice
我知道这是一个常见问题,我想我想说的是我试图让整个购物车而不是每件商品收取基本价格(7.50 美元)和每件额外商品 2.00 美元.
I know this is a common issue and I guess what Im trying to say, is Im trying to get the entire cart and not each item to charge the base price ($7.50) and $2.00 per additional item.
所有产品的尺寸和重量相同
All products are same size and weight
非常感谢任何帮助
推荐答案
您想要做的是设置以下变量.
What you would want to do is set the following variables.
运费=0.00
运费2=2.00
搬运车=7.50
shipping=0.00
shipping2=2.00
handling_cart=7.50
这会给你想要的效果.如果买家只向购物车添加 1 件商品,则总运费将显示为 7.50,2 件将显示为 9.50,3 件将显示为 11.50,依此类推.
This will give you the effect that you are wanting. If the buyer only adds 1 item to the cart, the total shipping would show as 7.50, 2 items would show as 9.50, 3 items would show as 11.50 and so on.
您需要在所有按钮中包含这 3 个变量.
You will need to include those 3 variables in all of your buttons.
这篇关于多个项目和基本价格的 Paypal 运输问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!