What You’ll Build
A dedicated landing page for each creator that dynamically displays:- Creator’s name, photo, and bio
- Their curated product picks (drops)
- Exclusive discount callout
- Brand-consistent design with creator personalization
Why Metaobject Page Templates
CreatorCommerce stores creator data in Shopify metaobjects (type:creator). Using Shopify’s metaobject page templates gives you:
- Convenient data access — The
metaobjectvariable is automatically available in the template - Scalable templates — One template serves all creators
- Theme editor compatibility — Design and configure in Shopify’s visual editor
- Automatic URL generation — Each creator gets
/pages/creators/[handle]
Prerequisites
- CreatorCommerce installed on your store
- At least one collab created with profile data populated
- Access to Shopify theme editor or theme code
- Creator metaobject type exists (CC creates this automatically)
Choose Your Build Path First
Path 1: Out-of-the-box (Fastest)
Use prebuilt CC sections in Theme Editor: Best when you want to launch quickly and keep everything editable in Theme Editor.Path 2: Code-first (Most control)
Use this guide to build/extend templates in code:- copy baseline homepage sections from
templates/index.json - swap in CC sections where needed
- wire dynamic sources and creator-aware copy
Quick Start
Enable page generation for Creator metaobjects
In Shopify Admin → Settings → Custom data → Metaobjects → Creator, enable “Generate pages” for the creator metaobject type. This creates a web page for every creator entry.
Create a metaobject page template
In the Theme Editor, create a new template for the
creator metaobject type. This is the layout all creator landing pages will use.You can create this as:- JSON template —
templates/metaobject/creator.json(recommended, section-based) - Liquid template —
templates/metaobject/creator.liquid(full custom control)
Bootstrap from homepage sections (code-first quick win)
If you already like your homepage section structure, use it as the landing-page baseline:
- Open
templates/index.json - Copy the
sections+orderstructure - Paste into
templates/metaobject/creator.json - Replace homepage-specific hero/featured sections with CC sections
Add CC sections to the template
Add CC sections to your template:
- CC Hero — Creator intro with name, photo, bio, and optional background
- CC Product Grid / Drops — Their curated product recommendations
- CC Banner — Discount callout or promotional messaging
Accessing Creator Data on Landing Pages
On metaobject page templates, the creator data is available directly through themetaobject variable:
Dynamic Sources and Copy Quick Wins
Once the template is in place, use Theme Editor dynamic sources for non-developers to iterate copy quickly:- map heading/description settings to creator fields when possible
- keep fallback static text for creator-absent states
- use section settings for campaign-specific text while creator fields handle personalization
Advanced: Looping Through Drops and Products
Display creator drops (curated product collections) with their products:Testing
- Theme editor — Select a creator from the metaobject picker to preview
- Live preview — Visit
/pages/creators/[handle]directly - Cart attributes — On non-metaobject pages, verify cart attributes are set by checking:
Best Practices
- Use the metaobject page template for dedicated creator pages
- Add fallback content for creators with missing fields
- Test with creators who have varying amounts of data
- Use section settings for brand-controlled design elements
- Keep creator data powering the personalization, not the layout
Next Steps
App Blocks 101
Understand exactly which CC sections/snippets to add in Theme Editor
Quick Start: Out-of-the-Box Blocks
Fast-track setup using pre-built CC sections (no code)
Create Additional Templates
Build multiple template variations for different campaigns
Enable Tracking
Set up attribution tracking for creator funnels
Personalize Product Pages
Extend co-branding beyond the landing page
Destinations
Configure where affiliate traffic lands