In today’s competitive e-commerce landscape, providing clear, detailed product information can set your store apart. Whether you want to display dynamic model measurements and corresponding size charts or showcase your brand’s partners and influencers, Shopify’s MetaFields and MetaObjects offer powerful customization options—all without the need to handle complex JSON code.
In this comprehensive guide, we will cover:
Let’s dive in!
In this approach, instead of managing large JSON structures, you define individual fields through the Shopify Admin that are easy to update.
This structured form allows your team to enter data directly, ensuring consistency and ease of management.
For example, create an entry for “Model A” with the following details:
To display a model’s data on a product page, create a simple MetaField on your product to store a reference (such as a handle) for the model.
custom
model_handle
When editing a product, simply enter the appropriate model handle.
Update your product template (e.g., product.liquid
) with the following Liquid code to retrieve and display the model’s details:
liquid:
{% comment %}
Retrieve the model reference from the product's metafield.
This assumes the metafield 'custom.model_handle' contains the model’s handle.
{% endcomment %}
{% assign model_handle = product.metafields.custom.model_handle %}
{% if model_handle %}
{% assign model = shop.metaobjects.models[model_handle.value] %}
{% if model %}
<div class="model-attributes">
<h3>Our Model: {{ model.fields.name.value }}</h3>
<p>Height: {{ model.fields.height.value }}</p>
<p>Wearing Size: {{ model.fields.wearing_size.value }}</p>
<p>Bust: {{ model.fields.bust.value }}</p>
<p>Waist: {{ model.fields.waist.value }}</p>
<p>Hips: {{ model.fields.hips.value }}</p>
</div>
{% else %}
<p>No model data available.</p>
{% endif %}
{% else %}
<p>Model information not set for this product.</p>
{% endif %}
Explanation:
model_handle
MetaField from the product.
Beyond product fit details, showcasing partner profiles—such as influencers, collaborators, or brands—can build credibility and drive engagement.
This setup is designed for intuitive data entry by marketing teams without the need for code.
Add entries for each partner using the admin interface. For instance:
https://example.com/images/jane-doe.jpg
https://instagram.com/jane_doe
https://twitter.com/jane_doe
Create a new page template (for example, partners.liquid
) to showcase partner profiles. Use the following Liquid code:
liquid:
<div class="partners">
<h2>Our Partners & Influencers</h2>
{% for partner in shop.metaobjects.partners %}
<div class="partner-profile">
{% if partner.fields.image_url.value %}
<img src="{{ partner.fields.image_url.value }}" alt="{{ partner.fields.name.value }}">
{% endif %}
<h3>{{ partner.fields.name.value }}</h3>
<p>{{ partner.fields.bio.value }}</p>
<div class="social-links">
{% if partner.fields.instagram.value %}
<a href="{{ partner.fields.instagram.value }}" target="_blank">Instagram</a>
{% endif %}
{% if partner.fields.twitter.value %}
<a href="{{ partner.fields.twitter.value }}" target="_blank">Twitter</a>
{% endif %}
</div>
</div>
{% endfor %}
</div>
Explanation:
By adopting a user-friendly approach with Shopify’s MetaFields and MetaObjects, you can dynamically display essential product details—such as model measurements and size charts—and manage partner profiles without dealing with raw JSON. This method empowers non-technical users to update information directly via the Shopify Admin, ensuring a consistent, scalable, and engaging storefront.
Whether you’re reducing returns by clarifying fit information or building brand credibility with influencer collaborations, these advanced customizations pave the way for a more dynamic, data-rich, and customer-centric online experience.
Happy customizing, and may your Shopify store continue to thrive both locally and globally!
UNHYDE is a Munich-based web development agency dedicated to pushing boundaries in web development, user experience, and digital marketing. Our mission is to create high-performing digital platforms that drive meaningful customer engagement and measurable business growth. We operate internationally and are a recognized Shopify Partner agency, having successfully launched countless websites and webstores worldwide.
For more insights or if you're ready to take your website to the next level, feel free to reach out to us at UNHYDE®, the web design agency. We’re always here to collaborate and craft tailored solutions that meet your unique needs.
get in touch
MAKE CONTACT