Shopify如果主页?

时间:2018-06-19 07:20:46

标签: shopify liquid

如何检测shopify if Homepage?以前有一个page.frontpage的处理程序,不再使用了。

我需要从主页中排除某些内容,因此我无法修改index.liquid文件。

3 个答案:

答案 0 :(得分:5)

以下是我们如何做到这一点:

{% if template.name != "index" %} 
 do something
{% endif %}

答案 1 :(得分:1)

要检测主页,您应该使用双等于“ ==”,使用感叹号“!=”来查找“不”等于“索引”的所有内容。

{% if template.name == "index" %}
    do something
{% endif %}

答案 2 :(得分:0)

我以这种方式使用它:

[DataContract]