Search code examples
javascriptwebshopifystore

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


I'm sorry for this simple quistion but I really got a headache !

I need to add "You added this item" text bellow the product After adding to cart.

for example: I have a list of fruits .. when the client add 5 kilos from apple then back to the home page to check the other fruits .. He notice that he bought the apple product by adding "You added this item" text bellow the price. enter image description here

thanks


Solution

  • Place the following code in a place where the product object is available on the homepage (or anywhere else).

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