Community

I want to offer an installment plan that corresponds to a Stripe subscription as well as full payment option. I also want the customer to be able to enter a coupon/promotion code to lower the cost of the service.

Comments (1)

Vipin

Jun 7, 2024

You can calculate the amount to be charged, be it an advance, deposit or total due and set up your form either charge this amount when the customer places an order or get pre-authorization for the payment and collect it within the next 7 days. Discount You can apply a discount based on the answer (coupon code) entered by the user for the short answer question (Apply coupon code). Please note that any user who enters the correct code will get a discount. Add coupon code option (You can skip this if you have already added this) Login to Neartail > click on the form to open it > Edit page will be displayed > In the Neartail Edit page, click on the Add field icon > enter the title "Coupon Code", select Short answer question Calculate discount In the Neartail Edit page, click on the Add price field icon > select Discount and click Next > select Custom formula and click Next > enter the below formula and click Create. IFS(Coupon Code == "LOYAL15", 0.15 * Order Amount, 0) Note: Coupon codes are case sensitive. You can change the coupon code and discount percentage as required. You can also add multiple coupon codes or provide fixed discounts. IFS(Coupon Code == "LOYAL15", 0.15 * Order Amount, Coupon Code == "WELCOME10", 10,0) Calculate amount to be paid (You can skip this if you have already added this) In the Neartail Edit page, click on the Add price field icon > select Net amount and click Next > select Standard calculation using NETTOTAL() formula and click Next > click Create. Please try this and confirm.

Add your comment