Skip to main content

Beyond the Landing Page

A great landing page gets the click. But conversion happens across the entire shopping journey. This step is about extending co-branding beyond the landing page—into every touchpoint where partner context can increase trust and conversion:
  • Pop-ups and modals
  • Product pages
  • Cart and checkout
  • Post-purchase flows
Every moment is an opportunity to reinforce: “You’re shopping with [Partner].”

The Full Co-branded Funnel

Landing Page → Product Page → Cart → Checkout → Thank You → Email
      ↑                              ↑                        ↑
   Pop-ups                    Discount Applied          Co-branded Email
Let’s break down each touchpoint.

Co-branded Pop-ups

Pop-ups are controversial—but when personalized, they convert.

Pop-up Types

When: On landing page load or after delayPurpose: Capture email, reinforce discountCo-branding elements:
  • Partner name: “[Partner] recommends…”
  • Partner photo (thumbnail)
  • Personalized discount code
  • Partner-specific messaging
Example:
┌──────────────────────────────────┐
│  [Photo] Sarah's followers get   │
│        15% off today!            │
│                                  │
│  Enter email for your code:      │
│  [_______________________]       │
│       [Get My Discount]          │
└──────────────────────────────────┘
When: Mouse moves toward browser closePurpose: Prevent abandonmentCo-branding elements:
  • “Before you go…” + partner name
  • Partner’s product recommendation
  • Discount reminder
  • Partner testimonial
Example:
┌──────────────────────────────────┐
│  Wait! Sarah wanted you to see   │
│         her #1 pick:             │
│                                  │
│    [Product Image]               │
│    [Add to Cart - 15% Off]       │
└──────────────────────────────────┘
When: After adding product to cartPurpose: Cross-sell, reinforce discountCo-branding elements:
  • “[Partner] also recommends…”
  • Complementary product suggestions
  • Discount confirmation
  • Cart summary
Example:
┌──────────────────────────────────┐
│  Added to cart! ✓                │
│  Your 15% discount is applied    │
│                                  │
│  Sarah also recommends:          │
│  [Product] [Product] [Product]   │
│                                  │
│  [Continue Shopping] [Checkout]  │
└──────────────────────────────────┘
When: After scrolling X% of pagePurpose: Engagement checkpointCo-branding elements:
  • Partner tip or recommendation
  • Social proof element
  • Gentle conversion nudge

Pop-up Best Practices for CC Funnels

Block competing pop-ups: When a visitor arrives via partner link, disable your regular site pop-ups. The partner funnel IS the pop-up experience. Conflicting pop-ups confuse visitors and dilute the co-branded message.

Co-branded Product Pages

When visitors click through to product pages, maintain the partner context:

Product Page Co-branding Elements

Partner endorsement banner:
  • “Recommended by [Partner Name]”
  • Partner thumbnail photo
  • Link back to partner’s landing page
Discount reminder:
  • Partner’s discount code displayed
  • “Your discount will be applied at checkout”
  • Compare price (crossed out original)
Placement: Sticky header or inline below product title

Implementation Pattern

{% comment %} Check for partner context {% endcomment %}
{% liquid
  if metaobject
    assign cc_creator = metaobject
  else
    assign cc_handle = cart.attributes['cc-creator-handle']
    assign cc_creator = metaobjects.creator[cc_handle]
  endif
  
  assign has_creator = cc_creator != blank
%}

{% if cc_creator %}
  <div class="cc-partner-endorsement">
    <img src="{{ cc_creator.data.value.cc-creator-profile-picture }}" 
         alt="{{ cc_creator.cc-creator-first-name }}" />
    <span>Recommended by {{ cc_creator.cc-creator-first-name }}</span>
    <span class="cc-discount">Use code: {{ cc_creator.cc-collab-discount-code }}</span>
  </div>
{% endif %}

Co-branded Cart

The cart is a critical conversion moment. Reinforce partner context:

Cart Co-branding Elements

  • “Your cart with [Partner]‘s picks”
  • Partner photo thumbnail
  • Discount status confirmation
  • Discount code pre-filled or auto-applied
  • Savings amount displayed
  • “Thanks to [Partner], you’re saving $X”
  • “Complete your routine with [Partner]‘s other picks”
  • Cross-sell products from partner’s recommendations
  • Bundle suggestions
  • Partner testimonial sidebar
  • “X people bought this with [Partner]”
  • Shipping and guarantee reminders

Auto-Apply vs. Manual Discount

How it works:
  • Discount code stored in cart attributes
  • Applied automatically at checkout
  • Visitor sees discounted prices throughout
Pros:
  • Seamless experience
  • Higher conversion (no friction)
  • Price comparison built-in
Cons:
  • Less “reveal” moment
  • May reduce perceived value of discount

Checkout Co-branding

Shopify checkout has limitations, but you can still reinforce partner context:

What’s Possible

Available with Shopify Plus or Checkout Extensibility:
  • Custom banners in checkout
  • Partner branding elements
  • Discount confirmation messaging
  • Thank-you page customization

Attribution Tracking

Ensure every order from a partner funnel is properly attributed:
{% comment %} Set cart attributes for tracking {% endcomment %}
<input type="hidden" name="attributes[cc-creator-handle]" value="{{ cc_creator.handle }}" />
<input type="hidden" name="attributes[cc-collab-id]" value="{{ cc_creator.cc-collab-id }}" />
<input type="hidden" name="attributes[cc-discount-code]" value="{{ cc_creator.cc-collab-discount-code }}" />

Post-Purchase Co-branding

The sale isn’t the end—it’s the beginning of the relationship:

Thank-You Page

  • “Thanks for shopping with [Partner]!”
  • Partner photo and message
  • Reminder of their ongoing relationship with brand
  • “Share your purchase with [Partner]”
  • Pre-filled social share buttons
  • Incentive for sharing (future discount)
  • “Other picks from [Partner]”
  • Products they might have missed
  • Future purchase incentive
  • Follow [Partner] on social
  • Join brand community
  • Sign up for partner’s content

Order Confirmation Email


Content Utilization

Use the content you’ve collected throughout the funnel:

Where Content Appears

Content TypeLanding PagePop-upsProduct PagesCartEmails
Partner photo
Partner bio
Partner quote
UGC gallery
Product picks
Discount code
Custom fields (collab)
Custom fields (drop)
Custom fields (product)

Dynamic Text Tokens

Use tokens to personalize messaging at scale:
{% comment %} Available tokens in CC templates {% endcomment %}
[cc-creator-first-name]     → "Sarah"
[cc-creator-discount-code]  → "SARAH15"
[cc-creator-discount-amount]→ "15%"
[cc-creator-shop-tagline]   → "Clean beauty picks"

Custom Field Tokens

Beyond built-in tokens, custom fields collected via forms can also appear throughout the funnel:
  • Collab-level fields (e.g., creator specialty, credentials) → Available everywhere the creator context exists
  • Drop-level fields (e.g., drop tagline, seasonal theme) → Available when iterating through drops
  • Product-level fields (e.g., “Why I love this,” sizing notes) → Available within product loops inside drops
Custom field data flows automatically from forms into the creator metaobject, so it can be displayed on landing pages, product pages, pop-ups, or even in co-branded emails.

Funnel Consistency

Maintain visual and messaging consistency across all touchpoints:

Consistency Checklist

Common Inconsistencies to Avoid

Mistake 1: Different partner photos on landing page vs. emailsMistake 2: Discount code displayed differently (15% vs $15 off)Mistake 3: Partner name in hero but not in cartMistake 4: Forgetting partner context on product pagesMistake 5: Generic checkout with no partner messaging

What’s Next

Your funnels are designed and detailed. Time to launch them and track performance.

Next: Launch & Track

Step 5: Enable integrations, spin up funnels, and monitor metrics →