How to display products assigned to a meta object in the Studio theme

Topic summary

An art gallery seeks to integrate artist information stored as meta objects into their Shopify Studio theme without creating duplicate collection pages. They want to:

Requirements:

  • Show artist bios on product pages
  • Display artist products on bio pages
  • Create a dedicated artists listing page

Proposed Solutions:

One respondent recommended a YouTube tutorial explaining metaobjects with similar use cases.

Another provided a technical approach:

  • Link artist metaobjects to products to dynamically pull bios onto product pages
  • Create custom templates for artist bio pages that filter and display associated products
  • Build an artists index page by looping through all artist metaobjects

Implementation:
Custom Liquid coding is required but avoids manual collection page creation. The solution involves using Shopify’s metaobject system with dynamic queries and Liquid filtering. Official Shopify developer documentation can guide the implementation process.

Summarized with AI on October 30. AI used: claude-sonnet-4-5-20250929.

Hi folks!

We are an art gallery that wants to achieve the following:

  1. Display artist bio’s on their product page (example page)

  2. Display artist products on their bio page (example page)

  3. Display a list of artists on a dedicated page

Artists are currently saved as a meta object in our Shopify but it seems achieving the points above requires some custom coding. I want to avoid having to create separate collection pages for each artist, since that would be twice the work.

Any help achieving this in the studio theme would be appreciated!

Hey @Gallery6 this guy’s explanation of metaobjects is pretty neat. Also the example he used is very much similar to what your requirement is. I am sure this will help in some way whatsoever.

https://youtu.be/QodbszNa7cI?si=TkOMWzK7418j43T6

Hello @Gallery6 ,

What you’re aiming to do is definitely achievable without creating separate collection pages for each artist, but it will require a bit of custom coding using Shopify’s Liquid and the metaobject (or metafield) system.

For example, you can store your artist information—bios, images, links, etc.—as a metaobject. Then on your product pages, you can pull in the corresponding artist’s bio by referencing the artist metaobject that’s linked to each product. This way, when a customer views a product, they’ll also see the artist’s bio dynamically pulled from the metaobject.

Similarly, for an artist bio page, you can create a template that loads the artist’s metaobject data and then uses it to filter and display products. By doing so, you avoid having to create individual collection pages because you can build a dynamic query that lists all products associated with that artist. Finally, on a dedicated artists index page, you can loop through all your artist metaobjects to display a list of artists.

It does involve some custom Liquid coding, but it’s a much cleaner approach than manually setting up separate collections. There are plenty of Shopify developer docs on metaobjects and Liquid filtering that can help guide you through the process.