我希望products.html
上有一个if语句,用于检查您是否在某个类别页面上。例如url是site.com/category/hoodies
,我想为Hoodies类别显示一个“英雄”图像。
也许有类别页面的模板?
答案 0 :(得分:0)
您可以访问多个页面变量,在此处记录:https://help.bigcartel.com/developers/themes/#variables-1
在这种情况下, page.full_url
可以解决问题:
{% if page.full_url contains '/category/hoodies' %}
<img src="http://website.com/image.jpg">
{% endif %}