2015-12-10 40 views

回答

0

由於產品可以在多個類別的上市,你需要使用一個for循環來遍歷所有的類別,然後包括if語句來檢查的名字 - 像這樣:

{% for category in product.categories %} 
    {% if category.name == 'Shirts' %} 
    <div>Your content</div> 
    {% endif %} 
{% endfor %} 
+0

謝謝您的幫助! – chrisbedoya

相關問題