Docs
Payments
Coupons

Stripe and LemonSqueezy Coupon Integration

Overview

This guide provides a detailed walkthrough for integrating coupons in your Stripe and LemonSqueezy payment systems.

Stripe Coupon Setup

Creating Coupons

  • Login to your Stripe account.
  • Go to Product Catalog > Coupons.
  • We need different coupons for test and live modes. If you want to create a coupon for test mode, make sure test mode is toggled on. Otherwise, create a coupon for live mode.
  • Click on the Create Coupon button.

Configuring Coupon Details

  • Give a name to your coupon.
  • Fill in other relevant details like discount type (percentage or fixed amount), duration, etc.
Coupon creation interface in Stripe
  • Apply the coupon to specific products or all products as per your requirement.

Automatic Coupon Application at Checkout

  1. Disabling Customer-Facing Codes

    • Make sure "Use customer-facing coupon codes" is not checked.
    Customer-facing coupon setting in Stripe
    • Click on the Create Coupon button.
  2. Copy Coupon ID

    • Click on the coupon that you created.
    • Copy the coupon ID from the top right corner.
Coupon ID location in Stripe
  • We will use this coupon id in the settings.js file.
  1. Update settings.js

    • The settings.js file, located at /settings.js, is the central configuration file for your StartupBolt application. This file contains various settings that control different aspects of your app, allowing for easy customization and management of your project's core parameters.
    • Open the /settings.js file.
    • Find the PLAN_DETAILS array.
    • Add the coupon ID to the couponId property of the payment object in the PLAN_DETAILS array.
    Updating settings.js for Stripe coupon

That's it! You have successfully created a coupon and added it to the PLAN_DETAILS array. When a user clicks on the plan, the coupon will be automatically applied!

Manual Coupon Entry by Customers at Checkout

  1. Enable Customer-Facing Codes

    • Make sure "Use customer-facing coupon codes" is checked.
    • Give a name to your coupon.
    • Fill in any other relevant details.
    • Click on the Create Coupon button.
    Customer-facing coupon creation in Stripe
  2. Update settings.js for Customer-Facing Coupons

    • Open the /settings.js file.
    • Ensure the couponId property of the payment object in the PLAN_DETAILS array is not present or is empty.
    Configuring customer-facing coupons in settings.js

That's it! When a user clicks on the plan, they will be able to enter the coupon code on the checkout page.

LemonSqueezy Discount Setup

Creating Discounts

  • Login to your LemonSqueezy account.
  • Go to Store > Discounts.
  • We need different discount codes for test and live modes. If you want to create a discount for test mode, make sure test mode is toggled on. Otherwise, create a discount for live mode.
  • Click on the + icon on the top right corner and then click on New Discount.

Configuring Discount Details

  • Enter a discount code. This is the code that customers will use on the checkout page.
  • Fill in other relevant details like name, amount, discount type (percentage or fixed amount), etc.
Discount creation in LemonSqueezy
  • Apply the discount to specific products or all products as per your requirement.
  • Enter any other relevant details and click on the Publish Discount button.
  • Copy the discount code from the published discount. We will use it in the settings.js file.

Automatic Discount Application

  • Open the /settings.js file.
  • Find the PLAN_DETAILS array.
  • Add the discount code to the couponId property of the payment object in the PLAN_DETAILS array.
Configuring LemonSqueezy discount in settings.js

That's it! You have successfully created a discount and added it to the PLAN_DETAILS array.

  • When a user clicks on the plan, the discount will be automatically applied.

Manual Discount Application

  • If the couponId property of the payment object in the PLAN_DETAILS array is not present or is empty, the customer can directly enter the discount code on the checkout page.

Closing Remarks

You have now configured Stripe and LemonSqueezy to handle coupons and discounts in both test and live environments. This ensures a seamless payment experience for your users.