How can I do this? Would like to add a sentence under the product title but below price…
See this other discussion about it to see what I want to add:
How can I do this? Would like to add a sentence under the product title but below price…
See this other discussion about it to see what I want to add:
I am doing same for my website by adding this line to product-item.liquid page.
Please share your url so we can help you.
Thanks for your help Shahzad!
An example url collection page is:
https://northernlites.com/collections/ultralight-trekking-series
Please find your product item liquid file and add your text above h2 tag like this
Your text
When you enter the product-item.liquid file, press ctrl+f and search for productitem–title and add span above it.
Thanks, that does work but every product would say the exact same thing. Can I customize what each product says as a short description?
If you want to do it for each collection separate you can use the following code
{% for collection in product.collections %}
{% if collection.handle == “bundle-of-5” %}
{% endif %}
{% endfor %}
If you want for separate product you can use this code
{% if product.handle == “” %}
Note: If you don’t know what collection handle is here’s where you can find it
For collection go to your collection page by going to Products> collections>your collection > Search engine listing > and copy the end of your URL. In my case my collection handle is “bundle-of-5”