Liquid Template Variables - products

From Spiffy Stores Knowledge Base

Revision as of 12:11, 25 June 2018 by Admin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The Liquid template variable products contains a collection of all of the store's products.

You can access any product by using the product handle to index the products contained within the products variable.

<h1>{{ products.cotton-hat.title }}</h1>
<p>{{ products.cotton-hat.description }}</p>

This example allows you to access the description of the cotton-hat product.

Further Reference