Looking for Shopify script to apply 10% Extra Off on prepaid orders while checkout
Hi @BSCM
You can look at the following apps, which provide features you’re interested in.
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any questions!
I am looking for script for extra 10℅ off on paid orders only
Hi @BSCM
Sorry for misunderstanding your question.
Script for extra discount on prepaid orders is available for Shopify Plus merchants only. You can check further via this guide:
https://www.lucentinnovation.com/blogs/posts/increase-conversion-for-prepaid-orders-with-extra-discount
If you’re not on Shopify Plus, there is another workaround solution.
You can check with your payment gateway if they have an option to provide discounts on specific payment methods.
If yes, then simply create a discount on your payment gateway dashboard.
For example, if you use Razorpay as a payment gateway
You can register for the Razorpay payment gateway. Once your account is approved, you can use the option OFFERS in the Razorpay dashboard and create your offer, which you can share on your website using the popup or discount badge using any free app available on Shopify. Customers can easily apply discounts on prepaid orders.
I hope this helps!
Option 1st is not workable as its has lots of bugs with the latest version
of shopify checkout because now the radio button is not available with the
payment gateway name. So we can’t execute click event in jquery
Shopify Scripts are being deprecated, so the old Plus-based approach won’t be reliable going forward.
For most stores, the practical workaround is using an app that applies a prepaid discount directly at checkout. Codify Prepaid Plus supports this use case.
Hi @BSCM
You’re trying to apply a conditional discount based on payment method (prepaid), which is a classic Script Editor use-case that’s worth solving correctly before Scripts deprecation hits.
Natively, Shopify’s automatic discounts don’t support payment-method conditions, that gap is exactly why Script Editor existed for this. Your options right now:
- Script Editor (short-term): A line-item script can detect prepaid payment selection and apply 10% - but this is on borrowed time given deprecation. (Not suggested as scripts depreciate by June 30, 2026)
- Checkout Extensibility app: Apps like 1. Checkout Boost handle conditional discount logic at checkout without Scripts - you’d set a rule like “if payment method = COD, Don’t apply 10% discount” through their discount logic layer. By default automatic 10% order discount would be applied.
If you’re already planning a Scripts migration, it’s worth solving both problems at once rather than rewriting the script now and migrating again later.
Hope that helps!
Thanks!