Cartly Team
Metaobjects Now Available on Your Storefront
releasev1.12metaobjectsliquid
Metaobjects are now available on the storefront. Define custom content types in Admin and render them anywhere.
What Are Metaobjects?
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.
Using in Liquid Templates
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 %}GraphQL API
Query metaobjects from any headless frontend using metaobjects(type) or metaobject(type, handle). Access is controlled per-definition - storefront or admin_only.
Cache Invalidation
Every time you update a metaobject entry, Cartly automatically invalidates the Liquid cache and purges the CDN. Your storefront always shows fresh content.
Getting Started
- Go to Admin - Content - Metaobjects
- Create a new Definition (e.g. FAQ Item with question + answer fields)
- Add entries
- Use
metaobjects.faq_item.entriesin your Liquid templates