May 07, 2015
Create a custom product feed using Liquid within Shopify.
<ul id="news_feed"> <h2>Tour Dates</h2> {% for product in collections.tickets.products limit: 3 %} <li> <title>{{ product.title | strip_html | strip_newlines }}</title> <handle>{{product.handle }}</handle> <id>{{product.id}}</id> <description>{{ product.description | strip_html | strip_newlines }}</description> <image>{{product.featured_image | product_img_url: 'large'}}</image> <a href="{{product.url}}">Tickets ></a> <p>{{product.price | money_without_currency}}</p> </li> {% endfor %} </ul>