我正在开发 Shopify 主题,并在其中一个部分中添加了一个设置,让用户从他们的商店中选择产品
在架构中我有这个
{
"type": "product",
"id": "product_order",
"label": "Product to link"
}
在 HTML 中,我正在这样做
<a href="{{section.settings.product_order.url}}">Order this product</a>
然而,href
总是空的。我尝试选择不同的产品,但没有用。
输出section.settings.product_order
打印产品标题。
我是否product
错误地使用了设置输入?