在Big Cartel主页上仅显示一个产品类别

时间:2015-04-08 03:34:52

标签: bigcartel

我想在Big Cartel主页上只显示一类产品。这是标准NEAT主题的代码。

我可以调整“get”标签来完成此操作吗?或者是另一个if / for required?

{% get products from products.all limit: theme.featured_products %}
  {% if products != blank %}
    <ul class="products_list">
        {% for product in products %}
                             <li class="{{ product.css_class }}">
                <a href="{{ product.url }}">
                    <img alt="Image of {{ product.name | escape }}" src="{{ product.image | product_image_url | constrain: '900' }}">
                    <b>{{ product.name }}</b>
                    <i>{{ product.default_price | money_with_sign }}</i>
                    {% case product.status %}
                        {% when 'active' %}
                            {% if product.on_sale %}<em>On Sale</em>{% endif %}
                        {% when 'sold-out' %}
                            <em>Sold Out</em>
                        {% when 'coming-soon' %}
                            <em>Coming Soon</em>
                    {% endcase %}
                </a>
            </li>
                    {% endif %}
        {% endfor %}
    </ul>
  {% else %}
    <p class="no_results">No products found.</p>
  {% endif %}
{% endget %}

1 个答案:

答案 0 :(得分:0)

您需要使用基本的“for”循环来检索特定类别的产品,目前使用“get”不起作用:

{% for product in categories.accessories.products limit:6 %}
  <p>{{ product.name }}: {{ product.price }}</p>
{% endfor %}

将“配件”替换为任何永久链接代表您尝试从中拉出的类别,并且您已完成设置。