我在使用Big Cartel过滤器参数将类添加到隐藏输入时遇到问题。这些参数列在此处的文档中 - https://help.bigcartel.com/developers/themes/#filters-1 - 但它们未在示例中使用。我试图添加一类测试'隐藏选项输入。
{% if product.has_default_option %}
{{ product.option | hidden_option_input, class_name='test' }}
{% else %}
我尝试过其他几种格式,但没有一种格式导致添加了类名。任何帮助将不胜感激!
答案 0 :(得分:1)
只需将参数包含为逗号分隔值,如下所示:
{{ product.option | hidden_option_input, 'testing', 'testing123' }}
将输出:
<input class="testing123" id="testing" name="cart[add][id]" type="hidden" value="123456">