Metaobjects Now Available on Your Storefront
Create custom content types - FAQs, testimonials, size guides - and display them on your storefront via Liquid templates or the GraphQL API.
Create custom content types - FAQs, testimonials, size guides - and display them on your storefront via Liquid templates or the GraphQL API.
Metaobjects are now available on the storefront. Define custom content types in Admin and render them anywhere.
Metaobjects let you create custom structured content types - FAQs, testimonials, team members, size guides. Define the schema once, add entries in Admin, and they appear on your storefront automatically.
Every storefront template now has access to metaobjects.TYPE.entries. No extra setup required.
{% for item in metaobjects.faq_item.entries %}
{{ item.fields.question }}
{% endfor %}Query metaobjects from any headless frontend using metaobjects(type) or metaobject(type, handle). Access is controlled per-definition - storefront or admin_only.
Every time you update a metaobject entry, Cartly automatically invalidates the Liquid cache and purges the CDN. Your storefront always shows fresh content.
metaobjects.faq_item.entries in your Liquid templates