我正在尝试添加新的复选框以授权离开。遵循shopify网站上的步骤:https://help.shopify.com/en/themes/customization/cart/get-more-information-with-cart-attributes
该复选框显示在页面中,但是在调用订单API检索交易时,note_attributes字段始终为空。
我联系shopify支持人员,他们说代码看起来还不错,但他们无法解释为什么它没有出现在note_attributes中。
已经使用shopify UI生成器,并尝试检查shopify论坛无济于事。
我已经更新了cart-template.liquid,并在下面的<form> .. </form>
标签内添加了
<p class="cart-attribute__field">
<input type="hidden" name="attributes[Authority To Leave]" value="No">
<input type="checkbox" name="attributes[Authority To Leave]" value="Yes" checked>
<label>Authority To Leave</label>
</p>
我似乎无法弄清楚为什么它没有出现在note_attributes字段中。欣赏是否有人可以对此有所了解。