如何检查我们是否在购物车页面Shopify

use*_*451 4 shopify

如何检查当前页面是否为theme.liquid中的购物车页面?我试过page.handle=='cart'但它不起作用.

Ste*_*arp 10

你不需要handle过滤器,你可以使用:

{% if template == 'cart' %}
  ...
{% endif %}
Run Code Online (Sandbox Code Playgroud)