Shopify Product Feed

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>

 

Leave a Reply

Posted in CMS
katherine as a flat graphic icon

About Me

I’m an African / Ojibwe First Nations Web Developer living in Winnipeg, Manitoba.

Visit the Tips and Blog to see what I’m working on.