Object Reference
Objects are template variables you can use to dynamically populate templates in your storefront theme. See documentation below and details of available template objects and their properties.
Global Objects
Global objects are available across all templates and pages enabling theme developers to create dynamic custom pages powered by the store data.
currencies
Returns a list of active storefront currencies you can iterate over, see currency.
Example Usage
languages_active_storefront
Returns a list of active storefront languages you can iterate over, see language.
Example Usage
menus
Allows you to access a menu's items by it's code to iterate over to generate a menu from the backend, see menu items.
Example Usage
products
Returns a list of products you can iterate over, see product.
Example Usage
product_categories
Returns a list of product categories you can iterate over, see product_category.
Example Usage
posts
Returns a list of blog posts you can iterate over, see post.
Example Usage
post_categories
Returns a list of post categories you can iterate over, see post_category.
Example Usage
privacy_policy
Content from store Privacy Policy settings, typically used in a "Privacy Policy" page to automatically pull content in from settings.
Example Usage
request
The current session active request context.
Example Usage
Property | Type | Description |
---|---|---|
user | Object | Current authenticated user, see user. |
cart | Object | Current cart for the current session, see cart. |
get_host | String | Current host domain. |
path | String | Current url path. |
COUNTRY_CODE | String | Current active geo country code, see geo. |
CURRENCY_CODE | String | Current active currency code. |
LANGUAGE_CODE | String | Current active language code. |
settings
Theme settings object with stored theme settings values as properties. See theme settings docs.
Example Usage
store
Returns the store object with general information about the store and the contact details.
Example Usage
Property | Type | Description |
---|---|---|
address | object | The store address object see address. |
branding | object | The store branding object, see branding. |
name | String | General name of the store defined in settings. |
tagline | String | Store tagline defined in settings. |
legal_name | String | Legal name of the store. |
phone | String | Store phone number. |
email | String | Store email address. |
timezone | String | Store timezone. |
get_meta_title | String | Store SEO meta title. |
get_meta_description | String | Store SEO meta description. |
storefront_geos
Returns a list of configured markets, see geos.
Example Usage
subscription_terms_and_conditions
Content from store subscription terms and conditions settings, typically used in a "Subscription Terms & Conditions" page to automatically pull content in from settings.
Example Usage
terms_and_conditions
Content from store terms and conditions settings, typically used in a "Terms & Conditions" page to automatically pull content in from settings.
Example Usage
Objects
Object have many properties that can be accessed in templates.
address
Property | Type | Description |
---|---|---|
line_1 | String | Address line 1. |
line_2 | String | Address line 2. |
city | String | Address City. |
state | String | Address State. |
postcode | String | Address Postcode. |
country | String | Address Country. |
branding
Store branding properties accessed through the store object to leverage within templates.
Property | Type | Description |
---|---|---|
logo | File | Store branding logo, use .url to access the file link. |
icon | File | Store branding icon, use .url to access the file link. |
primary_color | String | Store branding primary color, returns a HEX code. |
accent_color | String | Store branding accent color, returns a HEX code. |
cart
Cart object that contains all of the information about the users currently active cart.
Property | Type | Description |
---|---|---|
all_lines | List | Returns a list of all cart line items. |
num_items | Integer | Returns the count of the items in the cart. |
is_empty | Boolean | Returns true/false if the cart is empty or not. |
currency | Object | Returns the currency of the cart as an object, see currency. |
vouchers | List | Returns a list of vouchers attached to the cart, see voucher. |
is_tax_known | Boolean | Returns true/false if the cart tax is known yet or not. |
total_incl_tax | String | Returns the cart total including tax. |
total_excl_tax | String | Returns the cart total excluding tax. |
Example Usage
currency
Currency object accessed through currencies.
Property | Type | Description |
---|---|---|
code | String | Name of the currency, ie USD . |
symbol | String | The symbol of the currency, ie $ . |
country
Country object to access properties about a country, see storefront_geos for example usage.
Property | Type | Description |
---|---|---|
code | String | Two letter ISO 3166 country code. |
name | String | Full name of the country. |
geo
A geo
is a combination of a language and currency typically associated with a market, see full example in storefront_geos.
Property | Type | Description |
---|---|---|
currency | object | The currency object, see currency. |
country | object | The country object, see country |
language | String | Two letter ISO 639 language code. |
image
Product images, see example usage below.
Example Usage
Property | Type | Description |
---|---|---|
original | File | The original image file, typically used when creating a thumbnail. |
url | String | The full CDN link to render the image. |
items (menu)
A menu item
has properties to support creating dynamic menus configured through the dashboard menu editor.
Example Usage
Property | Type | Description |
---|---|---|
active | Boolean | Indicates whether the link is currently active. |
child_active | Boolean | Indicates whether any child link of the current link is active. |
child_current | Boolean | Indicates whether the URL path matches the URL of a child link of the current link. |
current | Boolean | Indicates whether the current URL path matches the URL of the link. |
items | List | Contains the child items belonging to the current menu item. |
level | Integer | Specifies the hierarchical level of the current menu item. |
name | String | Represents the display name of the current menu item. |
url | String | Denotes the URL path for the menu item's href link. |
order
Order object available on the order confirmation view, typically used in tandem with javascript conversion snippets through apps or custom theme implementations, see example usage below. Only available in the confirmation
step in the checkout/checkout.html
template, see Checkout Customization.
Example Usage
Property | Type | Description |
---|---|---|
number | String | Order number. |
currency | String | Order currency. |
lines | List | List of order line items, see order line. |
user | Object | The order customer, see user. |
total_excl_tax | String | Order total excluding tax. |
total_incl_tax | String | Order total including tax. |
total_tax | String | Order total tax. |
shipping_incl_tax | String | Order shipping including tax. |
shipping_excl_tax | String | Order shipping excluding tax. |
voucherapplication_set | List | Order voucher discounts applied, see voucher. |
shipping_address | Object | Order shipping address, see address. |
billing_address | Object | Order billing address, see address. |
order line
Order line object details accessed through an order. See order for example usage.
Property | Type | Description |
---|---|---|
product | Object | Line item product, see product. |
title | String | The order line title, full product name at time of sale. |
quantity | String | Product quantity. |
unit_price_incl_tax_incl_discount | String | Per unit price including tax, including discounts. |
unit_price_excl_tax | String | Per unit price excluding tax. |
unit_price_incl_tax | String | Per unit price including tax. |
page
Storefront Page object details available in the pages/page.html
template and custom page templates.
Property | Type | Description |
---|---|---|
title | String | Page title. |
content | String | Page content. |
get_meta_title | String | Page SEO meta title. |
get_meta_description | String | Page SEO meta description. |
paginator
The paginator
object is available on "list views" where the items to display are paginated from the backend, works in tandem with page_obj.
Example Usage
Property | Type | Description |
---|---|---|
num_pages | Integer | Number of pages in pagination set. |
page_obj
The page_obj
object is available on "list views" where the items to display are paginated from the backend, works in tandem with paginator.
Property | Type | Description |
---|---|---|
number | Integer | Current page number. |
has_next | Object | Next page object. |
has_previous | Object | Previous page. |
next_page_number | Integer | Next page number. |
previous_page_number | Integer | Previous page number. |
post
Blog post properties available through global post context and the blog/post.html
and blog/index.html
templates.
Property | Type | Description |
---|---|---|
id | String | The post ID. |
featured_image | File | Blog post featured image file, use .url to access full file link. |
categories | List | List of related post categories, use .all to return a list of categories, see post_category. |
get_absolute_url | String | A full path link to the blog post. |
title | String | The post title. |
content | String | Post content. |
slug | String | Post url slug. |
get_meta_title | String | Post SEO meta title. |
get_meta_description | String | Post SEO meta description. |
post_category
Blog post category properties available through global post_categories context and the blog/post.html
and blog/index.html
templates.
Property | Type | Description |
---|---|---|
id | String | Blog post category ID. |
name | String | Blog post category name. |
get_absolute_url | String | Blog post category canonical url link. |
product
Product configured in the store catalogue.
Property | Type | Description |
---|---|---|
id | String | Product ID. |
title | String | Product title. |
get_title | String | Product title. |
get_all_images | List | List of product images, see image. |
get_description | String | Product description. |
sku | String | Product stock keeping unit (sku). |
categories | List | List of product categories, use .all to return a list of categories, see product_category. |
parent | Object | Parent product if product is variant (child). |
is_child | Boolean | Product structure indicating this is a variant product. |
primary_image | File | Primary image of the product, use .url to access a full file link. |
get_absolute_url | String | Product canonical url link. |
num_approved_reviews | Integer | Count of approved product reviews. |
rating | Integer | Product rating as a number between 1 and 5. |
reviews | Integer | List of product reviews, see review. |
get_meta_title | String | Product SEO meta title. |
get_meta_description | String | Product SEO meta description. |
product_category
Product category object.
Property | Type | Description |
---|---|---|
id | String | Category ID. |
name | String | Category name. |
description | String | Category description. |
image | File | Category image, use .url to access image link. |
get_absolute_url | String | Category canonical url link. |
get_meta_title | String | Category SEO meta title. |
get_meta_description | String | Category SEO meta description. |
price
Product price object.
Property | Type | Description |
---|---|---|
currency | String | Price currency. |
price | String | Price that will be charged. |
price_retail | String | Suggested retail price. |
review
Product review object.
Property | Type | Description |
---|---|---|
id | String | Review ID. |
title | String | Review title. |
score | Integer | Review score. |
user | Object | The customer that created the review, see user. |
user
User in storefront context is the same as "customer".
Property | Type | Description |
---|---|---|
id | String | Customer's unique id. |
first_name | String | Customer's first name. |
last_name | String | Customer's last name. |
email | String | Customer's email address. |
phone_number | String | Customer's phone number in e.164 format. |
language | String | Customer's preferred communication language. |
accepts_marketing | String | Wether or not the customer accepts marketing communications. |
ip | String | Customer's most recently used IP address. |
user_agent | String | Customer's most recently used user agent String. |
voucher
Voucher object.
Property | Type | Description |
---|---|---|
title | String | Voucher title. |
code | String | Voucher code. |