显示Big Cartel商店登陆的商店类别列表

时间:2018-04-18 23:00:36

标签: templates bigcartel

我使用了Big Cartel的Luna主题。

我的商店位于 / products ,点击商店类别链接到 / category / tees / category / accessories 等< / p>

/ products 页面目前显示商店中所有产品的列表。我想更改它以显示类别列表

有没有办法检查我是在类别页面还是在商店登录页面上?

我也尝试了以下但它似乎无法正常工作

{% if page.url == '/products' %}
    // Show categories grid
{% else %}
    // Show category products
{% endif %}

任何帮助都会被指定

1 个答案:

答案 0 :(得分:0)

page.full_url变量与contains一起使用可获得最佳效果:

{% if page.full_url contains '/category' %}
  // Show category products
{% else %}
  // Show categories grid
{% endif %}