Difference between revisions of "Liquid Template Variables - products"

From Spiffy Stores Knowledge Base

m
m
Line 1: Line 1:
The Liquid variable '''products''' contains a collection of all of the store's [[Liquid_Template_Variables_-_product|products]].
+
The Liquid template variable '''products''' contains a collection of all of the store's [[Liquid_Template_Variables_-_product|products]].
  
 
You can access any product by using the product handle to index the products contained within the '''products''' variable.
 
You can access any product by using the product handle to index the products contained within the '''products''' variable.

Revision as of 11:48, 6 November 2013

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.