如何在集合 SHOPIFY 中的产品下方添加 "you added this"

How to add "you added this" bellow the product in the collection SHOPIFY

很抱歉这个简单的问题,但我真的很头疼!

添加到购物车后,我需要在产品下方添加 "You added this item" 文字。

例如:我有一个水果清单..当客户从苹果中添加 5 公斤然后返回主页查看其他水果时..他注意到他通过添加 [=20 购买了苹果产品=] 价格下方的文字。

谢谢

将以下代码放在主页上(或其他任何地方)product 对象可用的地方。

{%- assign productCartItems = cart.items | where: "product_id", product.id | size -%}
{%- if productCartItems > 0 -%}
  You added this item
{%- endif -%}