Shopify-按字母顺序将产品分类在购物车中

时间:2018-07-23 15:38:38

标签: shopify shopify-template

我正在按字母顺序搜索购物篮中的产品。

这是cart-template.liquid(我正在使用“首次亮相”主题)。

char **p;
p = new char*[5];

for(int i = 0;i < 5;i++)
    p[i] = new char[10];

我在 {% for item in cart.items %} <tr class="cart__row border-bottom line{{ forloop.index }} cart-flex{% if forloop.first %} border-top{% endif %}"> <td class="cart__image-wrapper cart-flex-item"> <a href="{{ item.url | within: collections.all }}"> <img class="cart__image" src="{{ item | img_url: '95x95', scale: 2 }}" alt="{% include 'LS_166227587_cart', item: item, handle: item.product.handle, paramkey: '' %}{{ LS_166227587_item_val | escape }}"> </a> </td> <td class="cart__meta small--text-left cart-flex-item"> <div class="list-view-item__title"> <a href="{{ item.url }}"> {% include 'LS_166227587_cart', item: item, handle: item.product.handle, paramkey: 'product' %}{{ LS_166227587_item_val }} {% if item.quantity > 1 %} <span class="medium-up--hide"><span class="visually-hidden">{% include 'LS_166227587_locales', LS_locales_item: 'cart.label.quantity', %}{% if LS_166227587_locales_value == '' %}{{ 'cart.label.quantity' | t }}{% else %}{{ LS_166227587_locales_value }}{% endif %}</span>(x{{ item.quantity }})</span> {% endif %} </a> </div> {% unless item.variant.title contains 'Default' %} <div class="cart__meta-text"> {% for option in item.product.options %} {{ option }}: {{ item.variant.options[forloop.index0] }}<br/> {% endfor %} </div> {% endunless %} {% assign products = collection.products | sort: 'title' %}或其他之前添加,但不起作用。

如何按字母顺序对购物车项目进行排序。 我在框中出售按字母顺序排列的产品。 非常感谢您的帮助。

0 个答案:

没有答案