The store object for shop-wide settings, contact details, and branding.
The store object holds information about the shop itself. It is available on every page. Use it for headers, footers, and anywhere you need the store name, logo, or contact details.
The store.brand object has the store's look and feel. Use it in headers, footers, and social links. It stays in sync when the store owner makes changes.
Property
Type
Description
store.brand.logo
image
The brand logo
store.brand.cover_image
image
The brand cover image
store.brand.short_description
string
A short tagline
store.brand.slogan
string
The store slogan
store.brand.colors
object
Brand color values
store.brand.social_links
array
Social media profile URLs
{% if store.brand.slogan %} <p class="tagline">{{ store.brand.slogan }}</p>{% endif %}{% for link in store.brand.social_links %} <a href="{{ link.url }}" target="_blank">{{ link.title }}</a>{% endfor %}
<p>All prices are in {{ store.currency }} ({{ store.currency_symbol }})</p>
You rarely need these directly. The money filter handles formatting for you. But they are useful for showing a currency notice in the footer or for passing data to JavaScript.