Whop × The Uncommon Business

AI Employee Bootcamp: payments move to Whop

Whop charges every Fall 26 purchase. GoHighLevel keeps contacts, email and SMS — it stops handling money and stops deciding what a buyer bought.

15 Aug 2026 Doors close 29 Sep, 10:00 CT prod_ioq3LBLXi4g8F

Action & questions

Everything unresolved, in one place. Cart opens Monday 17 Aug; only the organic funnel has to be live for it.

Uncommon team

Blocking Monday unless noted

  1. Terms content on /aieb-tcLex · due EOD Sun 16The page exists and every checkout already links to it. It is empty.
  2. Verify the domain for Apple PayLex or ChrisWhop dashboard → Settings → Checkout → Apple Pay for embedded checkout → Configure → Add payment domain, then follow the DNS instructions for go.theuncommonbusiness.co. No domain is registered today, which is the only reason Apple Pay does not appear.
  3. Bootcamp link added in FirstPromoterLisa · asked 14:42, no replyTracking is on every funnel and carries to checkout. There is no bootcamp link for a promoter to share.
  4. Order bump copyNickGA → VIP and VIP → Platinum. Defaults read "Upgrade to VIP" and "Upgrade to Platinum".
  5. Promo code namingLex · not blockingTest codes end in TEST so Supabase archives them out of the launch numbers. Free and UCL codes need your convention so reporting splits.

Parisa

Whop side, in order

  1. Paste the six organic checkoutsTwo lines each. Ads funnel deferred to end of next week, per Lex.
  2. Live payment test, end to endOne pass covering Whop → GHL → n8n → Supabase → FirstPromoter. Must assert the sale lands against the promoter — a green checkout proves nothing about the affiliate chain.
  3. Answer Scott on the other webhooksRefund, cancellation, failed payment, dispute. He has the purchase payload already.

Open questions

Nobody has answered these yet

  1. How are free / UCL seats actually sold?A promo code, a separate checkout, or the existing $0 GHL form? Each needs a different fix and 400–600 members ride on it. A 100%-off Whop checkout is already handled; a $0 GHL form reaches nothing.
  2. Does a tripwire funnel exist?The workflows carry a tripwire condition and the Worker supports the value, but no tripwire funnel or page has been named.
  3. Do upgrade workflows need the n8n webhook?2a and 3a have never had one. The Worker now writes attribution before GHL sees the contact, and Supabase gets purchases straight from Whop.
  4. Who owns the Platinum seat cap?The plan reports unlimited stock, and the GHL counter has no trigger — it sits at 0, so the 180 / 195 alerts never fire. Nothing is counting right now.
  5. PayPal is not renderingEnabled in our config all day and connected on your side at 16:05, but the Whop account's capability list has no PayPal entry at all — only card, bank and BNPL. Activation on Whop's side, not configuration on ours. One for Ari.
  6. BNPL went active without a decisionaccept_bnpl_payments flipped from inactive to active on the account this afternoon. Financing was never agreed for the bootcamp — the largest purchase here is $397. Our checkout still excludes it explicitly, so nothing changes at the till, but somebody turned it on.

The flow

One Worker sits between Whop and everything downstream. It knows what was bought at the moment of the charge, so nothing after it has to guess.

Buyer checks out on your pageWhop's form, embedded in the GHL funnel page. The page around it is unchanged.
Whop charges and fires payment.succeededTier, cart, funnel, affiliate cookie and all five UTMs were stamped on before the charge.
Worker upserts the GHL contact17 fields and the full tag set in one call, before any workflow runs.
Worker enters the workflows by IDPOST /contacts/{id}/workflow/{id}. A bumped cart enters two — base tier and upgrade.
FirstPromoter and Supabase, both directNeither waits on a GHL workflow firing correctly first.

GHL workflows no longer decide anything about the purchase.

They branched on order amount to work out the tier. There is no GHL order now, so those branches read nothing. Emails, SMS, waits and tag conditions all stay — they just stop guessing.

Plans

Twelve live plans, all hidden from the storefront — reachable only through a checkout page. A price that steps on 20 Sep needs two plans, because a Whop plan carries one price.

PlanPriceSellsPlan ID
Early Bird$47to 13 Sepplan_NWlCLuu4NotNr
General Admission$9713 Sep → closeplan_mtHkdjlQbvkHX
VIP$197to 20 Sepplan_vo09qNeR1gNKf
VIP$29720 Sep → closeplan_bgTK8oeOyv1up
Platinum$397all launchplan_pNNTBm1uvAmB4
EB → VIP$150to 20 Sepplan_GzR4MwQNIv42l
EB → VIP$25020 Sep → closeplan_NjHgKCFXKRlzK
EB → Platinum$350all launchplan_f5bsCu7Z7iyrS
GA → VIP$10013–20 Sepplan_MbBsqny6AWqxZ
GA → VIP$20020 Sep → closeplan_0XxN2EAjEKK7P
GA → Platinum$30013 Sep → closeplan_xiPbxrH89tmRU
VIP → Platinum$200all launchplan_RDxBErVUsQ3oB
VIP $297 → Platinum$100on holdnot created

VIP → Platinum, decided

Lex, 14 Aug: "VIP $197 → Platinum $397 = +$200. Once VIP increases to $297 (Sept 20) → Platinum $397 = +$100. For now, $200 increase is what it needed."

So the upgrade is priced off whatever VIP costs on the day. The $200 rung is live; the $100 rung gets built before 20 Sep. One consequence worth naming rather than discovering: a buyer who paid $197 for VIP in August and upgrades on 21 September pays $100 for a $200 gap. That is the accepted trade-off of pricing by date instead of by what they paid, and it keeps the offer simple to explain.

Every plan carries its own identifiers in Whop metadata — plan_key, offer, tier, is_upgrade, upgraded_from — so a payment can be traced back to exactly which rung was sold without a lookup table.

Affiliates

Sales reach FirstPromoter directly from the Worker. Eight GHL workflows are gone.

Capture

  • FirstPromoter's tracking script is in the funnel head code and sets _fprom_tid / _fprom_ref on go.theuncommonbusiness.co.
  • The checkout block reads those cookies at load and sends them with the payment, so they arrive as Whop payment metadata and are reported with the sale.
  • Cookies first, ?fpr= as fallback: the parameter only exists on the landing hop and is gone by the time most buyers reach checkout.
  • Same origin throughout, so the read works — provided FirstPromoter does not set those cookies HttpOnly. Nothing can read an HttpOnly cookie from a page script. The live payment test is what proves this end to end, and it is the single most important thing that test checks.

What the eight workflows did

  • Clear a field → write {{order.total_price}} → ×100 → POST the sale.
  • The first three steps existed only because GHL cannot multiply inline. The Worker holds cents already.
  • {{order.total_price}} does not exist without a GHL order, so those workflows are dead, not redundant.

Two fixes came out of it

  • No more duplicate commissions. Every sale carries event_id = the Whop payment ID. FirstPromoter requires it to dedupe; all eight workflows omitted it, so one retry paid twice.
  • Amounts were about to be 100× wrong. Whop reports dollars, FirstPromoter wants cents. Caught pre-launch.

One deletion still owed

  • The #2 Math operation step in the eight FirstPromoter workflows. The Worker sends cents — leave it in and every sale reports at 100×.

Your side  Tracking is on every funnel already and carries to checkout. Outstanding: add the bootcamp link to the promoter signup, so promoters have one to share.

Attribution

Organic, ads and tripwire are one attribute on the page. No logic to build.

  • Each block declares data-funnel="organic" | "ads" | "tripwire". It rides the payment; the Worker turns it into a tag.
  • New funnel page = copy the block, change data-tier and data-funnel. Nothing else.
  • Declared, not inferred, because two bootcamp funnels share one page URL.
  • The exact page slug also lands in aieb_page, so GHL conditions can target one ad page without a code change.
  • Tripwire is a real third value. GHL only ever wired ads and organic.

An upgrade never overwrites where the original sale came from.

What was there before. Every workflow ran an Ads / Organic / Tripwire block that read GHL's Funnel field and applied _organic or _ads. It ran on upgrade workflows too. So a buyer who came in through an ad and later upgraded on a page sitting in the organic funnel was re-tagged organic, and the ad lost the credit for a sale it had made.

What happens now. The Worker applies the funnel tag on a first purchase only, and skips it entirely when the offer is an upgrade. The original source survives. The upgrade is still fully recorded — aieb_page holds the exact page it was bought on, and the tier and path tags mark it as an upgrade — it just does not touch the attribution set on the first sale.

GHL changes

Tier workflows stay separate, one per tier. Each loses its payment trigger and its price branching, and keeps everything that speaks to the buyer.

The live set is the folder The AI Employee Bootcamp — WHOP: 1 — General Admission (Early Bird + GA), 2 - VIP, 2a — VIP upgrade, 3 - Platinum, 3a - Platinum upgrade, plus 4 - Bounce Email. All five are published and the Worker enters them by ID. The originals are untouched, kept only so the old build can be read side by side — sending a Whop buyer into one would re-run branches that read a GHL order amount that no longer exists.

Remove

  • Every Payment received trigger — keys on a GHL order that no longer exists
  • The price branch block and its tag nodes
  • Ads / Organic / Tripwire, its three branches and two tag nodes
  • The duplicate n8n webhook — keep one, on the main line
  • Any Go to that only existed to rejoin a deleted branch

Keep

  • Aevent, disable DND, the waits, Wisernotify
  • Every SMS and email, and add-to-WF4
  • The email-opened branch — engagement, not purchase
  • Any branch reading a tag, prior purchase or contact state
  • WF3's 180 / 195 Platinum seat notifications

Rule for anything ambiguous

Branch reads Amount, Workflow trigger or Funnel → delete. The Worker knows, and the branch now reads a value that never arrives.

Branch reads tags, prior purchases or email opens → keep. That is contact state and still works.

One addition per workflow: the n8n webhook's custom data gains whop_payment_id. It replaces ghl_order_id as the dedupe key and is the same value Supabase stores as processor_ref.

One exception: the Is Free? branch

  • It reads Amount, so the rule says delete — but its output, aieb-fall26_free, is how a free seat is identified downstream. The Worker does not write that tag today.
  • Unresolved until we know which route free seats take. See Action & questions.

Fields & tags

Written to the contact on every purchase, before any workflow runs.

FieldHolds
whop_payment_idThe Whop payment. The join key across GHL, n8n, Supabase and FirstPromoter.
aieb_tierga · vip · platinum
aieb_offerThe exact rung, e.g. ga-to-platinum
aieb_funnelorganic · ads · tripwire
aieb_pageThe page slug they checked out on
aieb_cohortfall26
promo_codeThe code the buyer entered, if any. Stamped on the payment so a free seat is explicable by which code, not just by the amount being zero.
fp_planFirstPromoter plan string, for plan-level reward rates
fp_amount_centsSale amount in cents, stamped at charge time
firstpromoter_bidReferral tracking ID, when there is one
utm_source … utm_termAll five, carried from the landing page

Tags, in order

aieb-fall26_purchased
aieb-fall26_purchased_eb | _ga | _vip | _platinum
aieb-fall26_purchased_vip-upgrade | _platinum-upgrade   bumps and upgrades only
aieb-fall26_organic | _ads | _tripwire   never on an upgrade

An upgraded buyer keeps the tag from the tier they started on as well as the one they moved to. Hub gating reads the entitlement; the dashboard reads the trail.

Checkout map

data-tier and data-funnel are the only two things that differ between one checkout and the next.

AI Employee Bootcamp — main funnel

PageSellsdata-tierdata-funnel
/general-admission-2026Early Bird $47 + 2 bumpseb-ga,gaorganic
/vip-admission-2026VIP $197 + Platinum bumpviporganic
/platinum-admission-2026Platinum $397platinumorganic
/vip-admission-upgradeEB → VIP $150eb-ga-to-viporganic
/platinum-admission-upgradeEB → Platinum $350eb-ga-to-platinumorganic
/vip-platinum-admission-upgradeVIP → Platinum $200vip197-to-platinumorganic
/bootcamp-2026-confirmationReceipt block

AI Employee Bootcamp Ads — rebuilt 15 Aug, new slugs

PageSellsdata-tierdata-funnel
/general-admission-2026-5280Early Bird $47 + 2 bumpseb-ga,gaads
/vip-admission-2026-9281VIP $197 + Platinum bumpvipads
/platinum-admission-2026-9922Platinum $397platinumads
/vip-upgrade-eb-5042EB → VIP $150eb-ga-to-vipads
/vip-upgrade-g-2170GA → VIP $100ga-to-vipads
/bootcamp-2026-confirmation-2847Receipt block

Source: live GHL funnel pull, 15 Aug 2026, 15:10 ET.

Two things to watch

Two ads funnels exist

  • AI Employee Bootcamp Ads is the live one, rebuilt 15 Aug. 2026 - Bootcamp - ads has not been touched since May and still carries /general-admission-2026-ads-checkout. Anything pointing at the old slugs is pointing at the wrong funnel.

Newsletter, advertorial, extended enrollment

  • Still on the old checkout, so they sell nothing until a block is pasted. That is the tripwire route.

Pasted once, never again.

A page holds two lines — a <div> with its tier and funnel, and a script tag. Fields, bumps, summary, payment element, terms and button are all served by the Worker.

Wording and styling change in worker/src/copy.js, one wrangler deploy, all twelve checkouts at once. Prices, the terms link and the confirmation URL were already dynamic — all three changed today without touching a page.

The GHL page still owns the headline, body copy and images. Those stay editable in the page editor.

Editing the checkout

A checkout page holds two lines. Everything inside the block is served from one place, so a wording or styling change is one edit and one deploy — never twelve pages re-pasted.

What a page contains

On the pageWhat it is
<div id="aieb-checkout" data-tier="…" data-funnel="…">Empty. Says which offer this page sells and which funnel it belongs to. The only thing that differs page to page.
<script src="…/embed.js" async>Renders the whole block into that div: fields, bumps, order summary, payment element, terms, button, styling.

Who edits what

Your team, in GHL — no deploy

  • Headline, body copy, images, layout — everything around the block, edited in the page editor exactly as before
  • Per-page wording overrides on the div: data-cta, data-title, data-legend-order, data-legend-pay, data-terms-label, data-secure-note
  • Hide promo entry on one page with data-promo="off". Hidden means not rendered — there is no field to type into and no code is sent.

Whop side — one deploy, all pages

  • Wording inside the block, and the block's styling — worker/src/copy.js
  • Hide promo entry on every page — showPromo: false in copy.js
  • Product names and bump labels — worker/src/catalog.js
  • Prices, sale windows, plan IDs — worker/src/plans.js

Three things were never on the page to begin with.

Prices, the terms link and the confirmation URL are all fetched from the Worker when the block loads. That is why the 13 Sep and 20 Sep price steps need no page edits at all, and why the terms link and confirmation URL both changed on 15 Aug without anyone opening a funnel.

Links

WhatWhere
GHL workflows — the Whop setThe AI Employee Bootcamp — WHOP — all five rebuilt workflows plus WF4
Main funnelgo.theuncommonbusiness.co/bootcamp-2026 — AI Employee Bootcamp, the one live on Monday
Ads funnelgo.theuncommonbusiness.co/ads-bootcamp-2026 — checkouts not swapped yet, due end of next week
Organic funnel — second— to be confirmed
Tripwire funnel— none named yet. See Open questions
Cloudflaredash.cloudflare.com — account Hello@theuncommonbusiness.co

Where it runs

Everything is on your own Cloudflare accountHello@theuncommonbusiness.co, account 81ac8dfc3cfa5c403247c595aef3db16. Nothing is hosted by Whop, so it stays yours at handover.

ThingNameWhat it does
Workeraieb-fall26-checkoutServes embed.js and receipt.js, prices every cart, creates the payment, receives the Whop webhook, writes to GHL and FirstPromoter
Pagesaieb-fall26-handoffThis document

Dashboard: dash.cloudflare.com. Credentials are shared separately — never on this page.

Deploying a change

StepCommand
1. Checknode scripts/check-embed.mjs — compiles the exact script the browser will receive
2. Deploycd worker && npx wrangler deploy
3. Confirmnode scripts/check-embed.mjs --live — checks what production is now serving

Step 1 is not optional. embed.js is generated, so the source file can be valid while the string it produces is not — that took every checkout down silently on 15 Aug, with a blank space where the form should be and nothing in the console.

Supabase

  • Scott's n8n endpoint receives the purchase and writes to Postgres directly. Whop points at it; nothing of ours sits between.
  • That keeps sales private — reaching it over the API would have meant exposing all 17 tables for one insert.
  • Failures land in n8n's execution history with alerting already attached.
  • Rows land as processor = 'whop', processor_ref = the Whop payment ID — the same shape as the 25,000 GHL rows, so reporting spans both. Plan ID stored alongside.