store_info Function

Provides the store’s information, including settings, payment methods, fulfillment options, and policies. For more details, see the StoreInfo Resource.

{% set store = store_info() %}
{% if store %}
    <p>Store Language: {{ store.language }}</p>
    <p>Currency: {{ store.currency }}</p>
    <p>Accepting Orders: {{ store.accepting_orders }}</p>
    <p>Return Policy: {{ store.return_policy }}</p>
{% endif %}