Store
The store object provides basic information about the store in a feed context, such as its name, domain, and currency.
Usage Example
{%- comment -%} Output store info in feed header {%- endcomment -%}
<store>
<name>{{ store.name }}</name>
<domain>{{ store.domain }}</domain>
<currency>{{ store.currency.code }}</currency>
</store>routes
Returns the routes object which provides URLs for the endpoints needed in the store.
linklists
Returns the linklists for the current store.
{% assign menu = linklists['main'] %}
{% for link in menu %}
{% comment %}do something with the link{% endcomment %}
{% endfor %}can_sell_over_stock
Returns true if store products can be sell over stock.
policies
Returns available policies as array.
terms_and_conditions
Returns terms and conditions with following properties:
- title
- body
- url
privacy_policy
Returns privacy policy with following properties:
- title
- body
- url
shipping_policy
Returns shipping policy with following properties:
- title
- body
- url
refund_policy
Returns refund policy with following properties:
- title
- body
- url