gpt4 book ai didi

paypal 按钮 - 如果购买 3 件商品是否有折扣价

转载 作者:太空宇宙 更新时间:2023-11-03 15:59:10 30 4
gpt4 key购买 nike

我想制作一个包含相同项目但具有多种模式的页面。它们都是相同的价格,但如果您订购 3 个,我想要一个折扣价。

即项目 1 蓝色 - 10.00项目 2 花 - 10.00项目 3 气球 - 10.00

因此,如果有人订购 2 个 1 号和一个 3 号而不是 30.00,他们将支付 25.00

它不能是通用的总购物车折扣,它只适用于选定的一组商品

这可能吗,还是我需要写一些 js?

谢谢

最佳答案

您可以使用 discount_amountdiscount_amount2discount_num 标签来支持分层折扣,这是您的场景示例:

单件商品价格为 10 美元,无折扣 discount_amount=0,当您将商品的每个额外数量添加到购物车时,将享受 5 美元的折扣 discount_amount2=5 >,这样您就可以为第 2、第 3、.. 件商品支付 5 美元,直到您添加了多达 10 件额外商品(上限)discount_num=10

尝试下面的代码并根据您自己的逻辑进行自定义,

<form method="post" action="https://www.sandbox.paypal.com/cgi-bin/webscr">
<input type="hidden" value="_cart" name="cmd">
<input type="hidden" value="1" name="add">
<input type="hidden" value="usm@email.com" name="business">
<input type="hidden" value="sale" name="paymentaction">
<input type="hidden" value="USD" name="currency_code">
<p>
ItemName No.1 (Regular Price $10.00):
</p>
<input type="hidden" name="item_name" value="ItemName No.1">
<input type="hidden" name="amount" value="10.00">
</p>

<input type="hidden" name="discount_amount" value="0">
<input type="hidden" name="discount_amount2" value="5">
<input type="hidden" name="discount_num" value="10">

<input type="hidden" value="http://lychee-vip.ccg21.dev.paypalcorp.com/" name="return">
<input type="image" alt="Make payments with PayPal - it's fast, free and secure!" name="submit" src="http://www.paypal.com/en_US/i/btn/btn_cart_LG.gif">
</form>

关于paypal 按钮 - 如果购买 3 件商品是否有折扣价,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35616547/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com