shopify模板修改技巧
* Chrome经常打不开?请使用Firefox
* Shopify是Liquid模板
常用代码:
* if标签体
{% if page.title == "xxxxx" %}
{% endif %}
* 当文件上传到assets目录下后
{{ 'jquery.countdown.js' | asset_url | script_tag }}
* 加购
jQuery.post('/cart/add.js', {
items: [
{
quantity: parseInt($(".xx")[0].value),
id: $("#add2cart").attr("data-product-id")
}
]
});