检测产品是否是新的。 Shopify 液体
Detect whether a product is new. Shopify Liquid
我希望能够在最近在 shopify 中添加的产品旁边显示文本 'New'。
类似于{% if product.date_added > ten_days_ago %}New{% endif %}
编辑
似乎 product
有一些未记录的对象,我通过控制台日志记录 {{ product | json }}
.
发现了这些对象
{{ product.created_at }}
{{ product.published_at }}
你可以这样做。
{% assign product_date = product.published_at | date: "%s" %}
{% assign current_date = 'now' | date: '%s' %}
{% assign difference = current_date | minus: product_date | date: "%d" %}
{% if difference < 10 %}
New
{% endif %}
我希望能够在最近在 shopify 中添加的产品旁边显示文本 'New'。
类似于{% if product.date_added > ten_days_ago %}New{% endif %}
编辑
似乎 product
有一些未记录的对象,我通过控制台日志记录 {{ product | json }}
.
{{ product.created_at }}
{{ product.published_at }}
你可以这样做。
{% assign product_date = product.published_at | date: "%s" %}
{% assign current_date = 'now' | date: '%s' %}
{% assign difference = current_date | minus: product_date | date: "%d" %}
{% if difference < 10 %}
New
{% endif %}