Try the checkout playground
Customize colors, radius, and fields in real time, then copy the generated embed code.
React setup
Step 1: Install the package
Step 2: Add the checkout element
returnUrl to handle redirects from external payment providers. After a redirect, check the status query parameter:
- success: The payment succeeded. Use the receipt information to render a success page.
- error: The payment failed, or the customer canceled it. Remount the checkout so your customer can try again.
Step 3 (optional): Configure programmatic controls
To get access to the controls of the checkout embed, you can use theref prop.
submit
To submit checkout programmatically, you can use the submit method on the checkout element.
getEmail
To get the email of the user who is checking out, you can use the getEmail method on the checkout element.
setEmail
Use the setEmail method on the checkout element to provide the user’s email.
getAddress
To get the address of the user who is checking out, you can use the getAddress method on the checkout element.
setAddress
Use the setAddress method on the checkout element to provide the user’s address.
This method works only when you hide the address form. You can hide the
address form by setting the
hideAddressForm prop to true.Step 4 (optional): Configure available properties
planId
Required - The plan id you want to checkout.
theme
Optional - The theme you want to use for the checkout.
Possible values are light, dark or system.
sessionId
Optional - The session id to use for the checkout.
To attach metadata to a checkout, first create a session through the API. Then pass the session ID to the checkout element.
returnUrl
Optional - The URL to redirect the user to after checkout completes.
affiliateCode
Optional - The affiliate code to use for the checkout.
hidePrice
Optional - Turn on to hide the price in the embedded checkout form.
Defaults to false
hideTermsAndConditions
Optional - Set to true to hide the terms and conditions in the embedded checkout form.
Defaults to false
skipRedirect
Optional - Set to true to skip the final redirect and keep the top frame loaded.
Defaults to false
collectPhoneNumbers
Optional - Set to true to require a phone number, "optional" to show a phone number field that buyers may leave blank, or false to disable collection. When omitted, checkout uses the plan’s feature setting.
onComplete
Optional - A callback function that checkout calls when it completes.
This option will set
skipRedirect to trueutm
Optional - Campaign tracking parameters to add to the checkout URL.
Note - The keys must start with utm_
fallback
Optional - The fallback content to show while the checkout is loading.
prefill
Optional - The prefill options to apply to the checkout embed.
Used to prefill the email or address in the embedded checkout form.
This setting can help when integrating the embed into a funnel that collects the email before payment.
hideEmail
Optional - Set to true to hide the email input in the embedded checkout form. Make sure to display the users email in the parent page when setting this attribute.
Defaults to false
Use this in conjunction with the
prefill attribute or the setEmail method
to control the email input.disableEmail
Optional - Set to true to disable the email input in the embedded checkout form.
Defaults to false
Use this in conjunction with the
prefill attribute or the setEmail method
to control the email input.hideAddressForm
Optional - Set to true to hide the address form in the embedded checkout form.
Defaults to false
Use this in conjunction with the
setAddress method to control the address
input.setupFutureUsage
Optional - The future usage mode for checkout. When using the chargeUser API, set this to off_session. Checkout then filters out payment methods that the API doesn’t support.
onStateChange
Optional - A callback function that checkout calls when its state changes.
Use this callback when submitting the checkout embed programmatically.
Possible values are loading, ready, disabled.
environment
Optional - The environment to use for the checkout.
Possible values are production or sandbox.
Defaults to production
When using
sandbox, make sure to use a sandbox plan ID. Sandbox plans can be
created in the sandbox dashboard.onAddressValidationError
Optional - A callback function that checkout calls when an address validation error occurs.
This method works only when you hide the address form. You can hide the
address form by setting the
hideAddressForm prop to true.onPaymentError
Optional - A callback function that checkout calls when payment processing fails.
The callback receives an error object with a human readable message and an optional machine readable code. It fires for declines on submit and failures detected during payment processing. For example, it fires after 3D Secure and after external provider redirects.
styles
Optional - Customize the padding of the checkout embed container.
The styles prop accepts a container object with the following properties:
Individual properties take precedence over their shorthand equivalents.
Full example
Other websites
Step 1: Add the script tag
To embed checkout, you need to add the following script tag into the<head> of your page:
Step 2: Add the checkout element
To create a checkout element, you need to include the following attributes on an element in your page:data-whop-checkout-return-url to handle redirects from external payment providers. After a redirect, check the status query parameter:
- success: The payment succeeded. Use the receipt information to render a success page.
- error: The payment failed, or the customer canceled it. Remount the checkout so your customer can try again.
Step 3 (optional): Configure programmatic controls
First, attach anid to the checkout container:
submit
To submit checkout programmatically, you can use the submit method on the checkout element.
getEmail
To get the email of the user who is checking out, you can use the getEmail method on the checkout element.
setEmail
Use the setEmail method on the checkout element to provide the user’s email.
getAddress
To get the address of the user who is checking out, you can use the getAddress method on the checkout element.
setAddress
Use the setAddress method on the checkout element to provide the user’s address.
This method works only when you hide the address form. You can hide the
address form by setting the
data-whop-checkout-hide-address prop to true.Step 4 (optional): Configure available attributes
data-whop-checkout-plan-id
Required - The plan id you want to checkout.
To get your plan id, you need to first create a plan in the Manage Pricing section on your whop page.
data-whop-checkout-theme
Optional - The theme you want to use for the checkout.
Possible values are light, dark or system.
data-whop-checkout-theme-accent-color
Optional - The accent color to apply to the checkout embed
Possible values are
tomatoredrubycrimsonpinkplumpurplevioletiriscyantealjadegreengrassbrownblueorangeindigoskymintyellowamberlimelemonmagentagoldbronzegray
data-whop-checkout-session
Optional - The session id to use for the checkout.
To attach metadata to a checkout, first create a session through the API. Then pass the session ID to the checkout element.
data-whop-checkout-return-url
Optional - The URL to redirect the user to after checkout completes.
data-whop-checkout-affiliate-code
Optional - The affiliate code to use for the checkout.
data-whop-checkout-hide-price
Optional - Set to true to hide the price in the embedded checkout form.
Defaults to false
data-whop-checkout-hide-submit-button
Optional - Set to true to hide the submit button in the embedded checkout form.
Defaults to false
When using this Option, you will need to programmatically submit
the checkout form.
data-whop-checkout-hide-tos
Optional - Set to true to hide the terms and conditions in the embedded checkout form.
Defaults to false
data-whop-checkout-skip-redirect
Optional - Set to true to skip the final redirect and keep the top frame loaded.
Defaults to false
data-whop-checkout-collect-phone-numbers
Optional - Set to true to require a phone number, optional to show a phone number field that buyers may leave blank, or false to disable collection. When omitted, checkout uses the plan’s feature setting.
data-whop-checkout-on-complete
Optional - The callback to call when the checkout succeeds
This option will set
data-whop-checkout-skip-redirect to truedata-whop-checkout-on-state-change
Optional - The callback to call when state of the checkout changes
Use this callback when submitting the checkout embed programmatically.
Possible values are loading, ready, disabled.
data-whop-checkout-skip-utm
By default, checkout forwards campaign tracking parameters from the main page to the checkout embed.
Optional - Set to true to prevent automatic forwarding of campaign tracking parameters
Defaults to false
data-whop-checkout-prefill-*
Use this to prefill the email or address in the embedded checkout form. This setting can help when integrating the embed into a funnel that collects the email before payment.
data-whop-checkout-hide-email
Optional - Set to true to hide the email input in the embedded checkout form. Make sure to display the users email in the parent page when setting this attribute.
Defaults to false
Use this in conjunction with the
data-whop-checkout-prefill-email attribute
or the setEmail method to control the email input.data-whop-checkout-disable-email
Optional - Set to true to disable the email input in the embedded checkout form.
Defaults to false
Use this in conjunction with the
data-whop-checkout-prefill-email attribute
or the setEmail method to control the email input.data-whop-checkout-hide-address
Optional - Set to true to hide the address form in the embedded checkout form.
Defaults to false
This method works only when you hide the address form. You can hide the
address form by setting the
data-whop-checkout-hide-address prop to true.data-whop-checkout-setup-future-usage
Optional - The future usage mode for checkout. When using the chargeUser API, set this to off_session. Checkout then filters out payment methods that the API doesn’t support.
data-whop-checkout-environment
Optional - The environment to use for the checkout.
Possible values are production or sandbox.
Defaults to production
When using
sandbox, make sure to use a sandbox plan ID. Sandbox plans can be
created in the sandbox dashboard.data-whop-checkout-on-address-validation-error
Optional - The callback to call when the address validation error occurs.
This method works only when you hide the address form. You can hide the
address form by setting the
data-whop-checkout-hide-address prop to true.data-whop-checkout-on-payment-error
Optional - The callback to call when checkout payment processing fails.
The callback receives an error object with a human readable message and an optional machine readable code. It fires for declines on submit and failures detected during payment processing. For example, it fires after 3D Secure and after external provider redirects.
data-whop-checkout-style-*
Optional - Customize the padding of the checkout embed container.
The attribute pattern is data-whop-checkout-style-container-{property} where {property} is a kebab-case padding property.
Individual properties take precedence over their shorthand equivalents.
Full example
Digital wallet payments
Customers can pay using Apple Pay in their Apple Wallet, which provides a seamless checkout experience on Safari and iOS devices. To enable Apple Pay on your embedded checkout, verify ownership of your domain.Set up Apple Pay
Learn how to verify your domain and enable Apple Pay for embedded checkout
When using the
hideSubmitButton option in React, use @whop/checkout@0.0.43
or later for Apple Pay to appear in the embed.Platform-specific guides
GoHighLevel
Process GoHighLevel payments through Whop
Frequently asked questions
Why is my checkout not loading?
Why is my checkout not loading?
Make sure the
plan_XXXXXXXXX or PLAN_ID_HERE value in each code snippet matches your Plan ID from the Whop dashboard. For HTML or JavaScript, also verify that the script tag appears in the <head> section.Where do I find my Plan ID?
Where do I find my Plan ID?
Go to your Dashboard > Checkout links > Select the three dots (⋮) on your pricing option > Hover over Details > Select the ID (starts with
plan_) to copy it.Can I embed multiple checkouts on the same page?
Can I embed multiple checkouts on the same page?
Yes, you can add multiple checkout embeds with different Plan IDs. Each embed operates independently.
How do I change the checkout theme?
How do I change the checkout theme?
For React: add
theme="dark" or theme="light" as a property. For HTML: add data-whop-checkout-theme="dark" to your div element.Can I hide the price in the embedded checkout?
Can I hide the price in the embedded checkout?
Yes, add
hidePrice={true} in React or data-whop-checkout-hide-price="true" in HTML to hide the price display.What happens after a customer completes checkout?
What happens after a customer completes checkout?
By default, checkout redirects customers to your whop. Use a custom redirect URL or skip the redirect to customize this behavior.
How do I prevent the redirect after checkout?
How do I prevent the redirect after checkout?
Use
skipRedirect={true} in React or data-whop-checkout-skip-redirect="true" in HTML to keep users on the same page.Is the embedded checkout mobile-responsive?
Is the embedded checkout mobile-responsive?
Yes, the checkout automatically adapts to different screen sizes and devices.
Can I customize the checkout's appearance with CSS?
Can I customize the checkout's appearance with CSS?
You can style the wrapper using the
.whop-checkout-wrapper iframe CSS class, but security restrictions prevent you from modifying the checkout content.Can I pre-fill customer information?
Can I pre-fill customer information?
Yes, use
prefill={{ email: "customer@example.com" }} in React or data-whop-checkout-prefill-email="customer@example.com" in HTML.
