【发布时间】:2020-12-22 11:49:31
【问题描述】:
我需要在我的购物车页面上输入优惠券代码,但它似乎无法以普通形式工作:
<input class="discount-code-field" autocomplete="off" type="text" name="discount" placeholder="Enter coupon code here" />
我在提交按钮之前,在表单中。
实时优惠券未应用于结帐页面上的订单。
我还需要做什么才能让它工作吗?
编辑: 表单看起来像这样——
<form action="/cart" method="post" class="cart">
............
<div class="bottom-box">
<input class="discount-code-field" autocomplete="off" type="text" name="discount" placeholder="Enter coupon code here" />
<input type="submit" value="Proceed to checkout" name="checkout" class="cart-submit w-button"/>
</div>
</form>
它会重定向到这样的 URL:
https://store.com/4934605xxxx/checkouts/04d6478feeb9d3262fbea5571b682ebc?_ga=2.260083023.358228188.1608464294-110675315.1604953057
【问题讨论】:
-
根据 Shopify 文档,您只能在结帐页面上应用优惠券代码,如果您想在购物车页面上使用它们,您需要使用任何 3rd 方 APP。