如何检测shopify if Homepage
?以前有一个page.frontpage
的处理程序,不再使用了。
我需要从主页中排除某些内容,因此我无法修改index.liquid
文件。
答案 0 :(得分:5)
以下是我们如何做到这一点:
{% if template.name != "index" %}
do something
{% endif %}
答案 1 :(得分:1)
要检测主页,您应该使用双等于“ ==”,使用感叹号“!=”来查找“不”等于“索引”的所有内容。
{% if template.name == "index" %}
do something
{% endif %}
答案 2 :(得分:0)
我以这种方式使用它:
[DataContract]