Skip to content

Button Checkout

A component that creates a Stripe Checkout session for handling payments. Use this for both one-time payments and subscriptions.

Usage

Choose the mode based on your payment type:

  • mode="payment" for one-time payments (default)
  • mode="subscription" for recurring payments (e.g., monthly memberships)

This component is a key part of handling Stripe subscriptions and one-time payments.

Button Checkout Button Checkout-dark

your_template.html
{% include 'components/button-checkout.html' with price_id=STRIPE_PLANS.1.price_id mode="payment" %}

Tip

You can use the button_text parameter to change the text of the button. By default it will be "Get " + APP_NAME.

{% include 'components/button-checkout.html' with price_id=STRIPE_PLANS.1.price_id button_text="Get Started!" %}