Skip to main content

What It Is

Drops are creator-curated product collections. Each creator can have multiple drops (e.g., “Summer Favorites”, “Daily Essentials”), and these display as branded product lists on their pages.

Key Capabilities

  • Multiple drops per creator — Organize products into themed collections
  • Custom product ordering — Creator controls display order
  • Featured media — Hero image/video per drop
  • Drop-level quotes — Creator description for each collection
  • Quick add-to-cart — Streamlined purchase flow

Pre-Built Sections

CreatorCommerce offers two product section types:

CC Products - Curated Lists

Best for: Higher SKU stores (10+ products)
  • Great for apparel and health & beauty
  • Creators can make multiple collections (drops)
  • Dropdown selector to switch between drops
  • “Add Bundle to Cart” functionality
  • Pre-built product card included (or use your theme’s card)
When to use: Stores with many products where creators curate multiple themed collections

CC Products - Curated Bundle

Best for: Lower SKU stores (< 10 products)
  • Showcases bundles of products
  • Simpler, focused display
  • Great for smaller catalogs
When to use: Stores with fewer products where creators recommend complete bundles

Quick Start Guide

Step-by-step instructions for adding curated lists or bundle sections to your creator template

How It Works

{% assign drops = cc_creator.data.value.cc-creator-drops %}

{% for drop in drops %}
  <section class="cc-drop">
    <h2>{{ drop['cc-creator-drop-name'] }}</h2>
    <p>{{ drop['cc-creator-drop-description'] }}</p>
    
    <div class="cc-products-grid">
      {% for product_data in drop['cc-creator-drop-products'] %}
        {% assign product_id = product_data['cc-creator-drop-product-shopify-id'] %}
        {% comment %} Render product card {% endcomment %}
      {% endfor %}
    </div>
  </section>
{% endfor %}

Drop Data Structure

FieldDescription
cc-creator-drop-nameDisplay name for the collection
cc-creator-drop-descriptionCreator’s description
cc-creator-drop-collection-idLinked Shopify collection
cc-creator-drop-productsArray of product references
cc-creator-drop-featured-mediaHero image/video URL

How This Connects