标签搜索

Shopify Liquid使用汇总

sunshine
2023-04-20 / 0 评论 / 70 阅读
温馨提示:
本文最后更新于2023年10月28日,已超过315天没有更新,若内容或图片失效,请留言反馈。

产品价格显示save了多少,代码如下:

{% if product.compare_at_price > product.price %}

You save {{ product.compare_at_price | minus: product.price | times: 100.0 | divided_by: product.compare_at_price | money_without_currency | times: 100 | remove: '.0'}}%

{% endif %}

获取单个产品的信息:标题,原价,现价,链接,图片等信息

{{ product.title }}
{{ product.compare_at_price }}
{{ product.price }}
{{ product.url }}
{{ product.images.first | img_url: 'master' }}

获取单个分类,多个分类的产品信息

{%- for product in collections[section.settings.product_list_collection].products -%}
<!--这里是单个产品 -->
{% endif %}

add to cart链接

<a href="/cart/add?id={{ product.selected_or_first_available_variant.id }}&quantity=1">add to cart</a>
感觉很棒,欢迎点赞 OR 打赏~
2
分享到:

评论 (0)

取消