Shopify Plus Checkout Customization: What is Possible

Chargebacks?
No longer your problem.
Recover 4x more chargebacks and prevent up to 90% of incoming ones, powered by AI and a global network of 20,000 merchants.
.webp)
TL;DR:
- Checkout extensibility replaced checkout.liquid for the information, shipping, and payment steps.
- Apps on those core checkout pages and the Checkout Branding API are Plus-only, while some checkout editor and post-purchase capabilities work on lower plans.
- Public apps using Shopify Functions can work across plans; custom apps containing Functions are Plus-only.
- Every customization should be tested for conversion, accessibility, speed, payment behavior, analytics, and fraud signals.
Shopify Plus checkout customization is the set of app- and API-based tools Shopify Plus merchants use to change how their checkout looks and behaves, checkout branding, checkout UI extensions, and Shopify Functions, after the old checkout.liquid file was retired. On Shopify Plus, you customize the checkout through Shopify's checkout extensibility framework, not by editing checkout code directly.
This guide breaks down what you can change, how Plus differs from standard Shopify, the technical limits Shopify enforces on every extension, how to test a customization before it goes live, and the fraud trade-off most articles skip. It's written for developers planning a build and merchants deciding if they need Plus.
{{cta}}
What You Can Customize on Shopify Plus Checkout
On Shopify Plus checkout, you can customize four things: branding, UI content and fields, checkout logic, and the page flow. You do this through checkout extensibility, Shopify's app- and API-based framework for editing checkout safely.
In plain terms, the checkout is the final set of screens where a shopper enters their address, picks shipping, and pays. Customizing it means shaping those screens to match your brand and business rules. On Plus, you get far more room to do that than on standard plans.
Checkout extensibility means you change the checkout with approved apps and APIs instead of editing raw checkout code. Think of it as a set of safe plug-in points that Shopify controls and maintains for you.
Why does this matter? Editing raw code used to break checkouts during platform updates. With extensibility, your changes survive updates and stay compliant.
Here's what each tool lets you do:
- Checkout branding: Change colors, fonts, and logos. Shopify confirms that checkout branding customizations are available only to Shopify Plus merchants.
- Checkout UI extensions: Add fields, content, and custom UI. The checkout UI extensions framework is Shopify's primary tool, built with Polaris, its design system.
- Shopify Functions: Set custom logic for discounts, shipping, and payments. With Functions you can build payment customizations that hide, reorder, or rename payment options.
- One-page checkout: Shopify's default checkout already runs on a single page across all plans. On Plus you can reshape that page with extensions and Functions instead of only restyling it.
Most stores combine these tools rather than picking one. You might use branding for look and feel, UI extensions to add a field, and Functions to control payment rules. Together they cover almost every checkout change a growing brand needs.
The End of checkout.liquid
For years, checkout.liquid was the Plus-only file that let developers edit checkout code directly. That era is over. Today, checkout.liquid deprecation means the file is now unsupported for the Information, Shipping, and Payment checkout steps.
The sunset happened in stages, and the last stage landed in August 2026:
| Checkout surface | Legacy status | What replaces it |
|---|---|---|
| Information, shipping, and payment steps (Plus) | checkout.liquid unsupported | Checkout UI extensions, Shopify Functions, Checkout Branding API |
| Thank you and order status pages (Plus) | checkout.liquid and script tags sunset August 28, 2025 | Checkout UI extensions for the thank you and order status targets |
| Thank you and order status pages (non-Plus) | Script tags sunset August 26, 2026 | Web pixel app extensions and UI extensions |
Plan new builds around apps and APIs, not raw code. If a store still has script tags on its order status page, they stopped firing this summer, which is worth checking before you trust your conversion or attribution numbers.
For developers, this is a hard cutoff, not a warning. Old themes that still reference the file will not render custom checkout logic. If you inherited a legacy store, audit it now and rebuild any custom steps as extensions or Functions before they silently stop working.
Shopify Plus Checkout vs. Standard Shopify Checkout
Advanced customization is what separates the two plans. Every Shopify plan lets you edit basic checkout appearance, but only Plus opens the developer-grade tools. Knowing the line helps you decide whether an upgrade is worth it.
Shopify's plan comparison shows the split clearly. Plus enables UI extensions on the information, shipping, and payment pages, plus custom apps built with Shopify Functions. Both are unavailable on non-Plus plans.
| Capability | Standard Shopify | Shopify Plus |
|---|---|---|
| Checkout editor settings (logo, colors, fonts) | Yes | Yes |
| Checkout Branding API (advanced styling) | No | Yes |
| UI extensions on information, shipping, and payment pages | No | Yes |
| UI extensions on thank you and order status pages | Yes | Yes |
| Post-purchase and web pixel app extensions | Yes | Yes |
| Public apps built with Shopify Functions | Yes | Yes |
| Custom apps built with Shopify Functions | No | Yes |
| Payment customizations on credit card fields (US and Canada) | No, non-credit-card methods only | Yes |
If you need any row marked "No" under standard, Plus is the plan that unlocks it. Standard Shopify still lets you adjust logos, colors, and basic settings from the checkout editor, run post-purchase offers, and install public Functions apps. What it locks away is the deeper control: custom fields on the core checkout steps, your own Functions logic, and branding at the API level.
So the real question is not "can I customize checkout?" but "how much control do I actually need?" A simple store may never outgrow standard settings. A high-volume or B2B store usually will, and that's when Plus pays off.
Price is part of the math too. Shopify Plus pricing runs far above standard plans, so the extra checkout control should map to a clear revenue or operations gain. If custom fields, net terms, or advanced branding drive real value, the upgrade earns its keep.
Technical Limits Every Checkout Extension Must Respect
Checkout extensibility trades raw freedom for guardrails. Shopify's checkout UI extensions reference sets hard limits that shape what a customization can do, and most build estimates that blow up do so because nobody checked them first.
| Limit | Rule | Why it matters |
|---|---|---|
| Extensions per location | Up to three extensions per block target in the checkout editor | Plan which messages, fields, and upsells earn a slot; the fourth idea has to go elsewhere |
| Bundle size | Compiled extension bundle cannot exceed 64 KB | Large libraries and embedded assets fail the build; keep logic lean and fetch data instead |
| Rate limiting | Extensions that make excessive changes are rate limited for the rest of that buyer session | Batch updates together instead of firing them one by one |
| Network access | Calls to external services require the network access capability | Every external call adds latency to the page where shoppers decide to pay |
| API version | Set the latest stable api_version (2026-07 as of this writing) in the extension config | Older versions lose features and eventually stop being supported |
None of these limits apply to apps that run after checkout. That matters for the fraud discussion below: screening that happens post-purchase adds nothing to your bundle and nothing to checkout load time.
Common Checkout Customization Use Cases
Most Shopify Plus checkout projects come down to a handful of proven use cases. Merchants rarely customize for its own sake; they customize to lift revenue, serve business buyers, or reward loyal shoppers. Notice how each one either adds a data field or removes a step, because both change your fraud exposure later.
- Post-purchase upsells: Offer a one-click add-on after payment, lifting average order value without slowing the main flow.
- Custom fields: Capture gift messages, delivery instructions, or a B2B purchase-order number at checkout.
- Loyalty and rewards: Let shoppers redeem points or see rewards inside checkout to boost repeat orders.
- B2B checkout rules: Use Shopify Functions to set net terms for B2B buyers and control which payment methods each buyer sees.
- Fewer fields, faster payment: Hide optional fields and reorder payment options on the single-page checkout so more shoppers finish.
Each of these wins is real, and each one shifts your risk profile. A gift-message field adds a place for bad actors to probe, and a removed step means one less checkpoint. Keep that link between customization and risk in mind as you read the next section.
The Fraud Trade-Off of Custom Checkouts
Every customization decision is also a fraud decision. Each custom field you add or friction point you remove can open a gap that fraudsters and refund abusers exploit.
This is the angle most guides miss. They optimize checkout for speed and conversion alone, then act surprised when Shopify chargebacks climb. Friendly fraud, where a real buyer disputes a legitimate charge, thrives when checkout collects less proof of who placed the order.
Speed sells, and the pressure to remove friction is real. Baymard Institute's cart abandonment research shows why checkout teams chase every removed click, and why the same data should make fraud teams nervous.
70.22% Average cart abandonment rate across 50 studies | 17% US shoppers who abandoned because checkout was too long or complicated | 35.26% Conversion lift a large ecommerce site can gain from better checkout design | $5.13 Total cost to US merchants per $1 of direct fraud loss |
Sources: Baymard Institute cart abandonment research (updated September 2025); LexisNexis Risk Solutions, 2026 True Cost of Fraud Study.
But stripping friction has a cost. ACI Worldwide reports that refund abuse and friendly fraud have surged, driven by frictionless eCommerce. It expects friendly fraud to rise 25% between Thanksgiving and Cyber Monday.
The trade-off cuts both ways. In its 2026 True Cost of Fraud Study, LexisNexis Risk Solutions found that more than half of US retailers and ecommerce companies saw customer churn rise because of their own anti-fraud measures. Friction at checkout loses good customers; no friction at all loses the goods.
The fix is not "remove all friction." It's deliberate design paired with post-checkout fraud screening.
Chargeflow Prevent screens every order after checkout, before you ship. It scores each order and recommends approve, verify, or cancel, so it's fraud screening that never touches checkout, your extension bundle, or your page speed. Pair it with chargeback alerts to resolve disputes before they post as chargebacks, and with automated chargeback recovery for the ones that still land.
Watch these common fraud gaps as you customize:
- Guest checkout: No account means less identity signal, which makes fraudulent orders easier to hide.
- Removed CVV or AVS checks: Dropping card verification speeds checkout but weakens your first line of defense.
- Express and one-click payments: Fewer steps mean fewer chances to catch a stolen card before purchase.
- Custom fields that skip review: Extra inputs like PO numbers or gift notes can bypass manual review rules.
Because the screening happens after payment, your checkout stays fast for everyone. Legitimate buyers are not slowed by extra verification, and risky orders get flagged before you ship and lose the goods.
One more reason to care: fraud that slips through shows up in your dispute ratio, and Shopify's Network Dispute Resolution Program and the card networks' chargeback thresholds judge you on that ratio, not on your conversion rate. A faster checkout that lifts disputes past 1% can cost more in program fees than it earns in extra orders.
For a deeper toolkit, see our guide to Shopify fraud prevention tools. For the full operating model, see the Shopify Plus chargeback and fraud protection guide.
How to Test a Checkout Customization Before It Goes Live
A checkout change touches revenue, compliance, and risk at the same time, so test it against all six dimensions below rather than conversion alone. Run the full pass on a development store, then again on production with a small traffic share.
| Test | What to check | Pass condition |
|---|---|---|
| Conversion | A/B test the new flow against the current checkout with a holdout group | Completed checkout rate holds or improves, with no drop in average order value |
| Accessibility | Keyboard navigation, focus order, and screen reader labels on every new field and block | Every custom element is reachable and labeled without a mouse |
| Speed | Compiled bundle size and any external calls made during checkout | Bundle stays under 64 KB and no blocking network request runs on the payment step |
| Payment behavior | Functions rules per market, currency, and payment method, including express wallets | Only the intended methods are hidden, renamed, or reordered, and card fields still validate |
| Analytics | Web pixel events on the thank you and order status pages | Orders attribute correctly and no event fires twice |
| Fraud signals | AVS and CVV enforcement, custom-field data reaching your review queue, and test orders through post-checkout screening | Every new order path still gets scored before fulfillment |
The fraud row is the one most teams skip, and skipping it is one of the most common chargeback mistakes Shopify merchants make. Fold it into the same QA sheet as the others and it costs an hour; discover it after launch and it costs a quarter of disputes. For the broader defensive layer around checkout, see our ecommerce fraud prevention guide.
{{cta}}
FAQ
Can You Customize the Checkout on Shopify Plus?
Yes, Shopify Plus lets you customize checkout through branding, UI extensions, and Shopify Functions, all built on checkout extensibility. Your store must be on the Plus plan, so if you are coming from another platform, start with our guide to migrating to Shopify Plus.
Is checkout.liquid Still Available on Shopify Plus?
No. checkout.liquid is unsupported for the information, shipping, and payment steps, and it was sunset for the thank you and order status pages on August 28, 2025. New builds use checkout UI extensions, Shopify Functions, and the Checkout Branding API instead.
What Is the Difference Between checkout UI Extensions and Shopify Functions?
Checkout UI extensions control what buyers see and enter, while Shopify Functions control checkout logic and rules. Extensions handle fields, banners, and content; Functions handle discounts, shipping, and payment behavior.
Which Checkout Customizations Work Without Shopify Plus?
Every plan gets the checkout editor for logos, colors, and fonts, UI extensions on the thank you and order status pages, post-purchase and web pixel app extensions, and public apps built with Shopify Functions. Extensions on the information, shipping, and payment steps, custom Functions apps, and the Checkout Branding API need Plus.
Does Shopify Plus Have One-Page Checkout?
Yes, Shopify Plus uses Shopify's one-page checkout, which shows information, shipping, and payment on a single screen to reduce steps. This shorter flow can lift conversion, but it also removes friction that once helped catch fraud.
Does Customizing Checkout Increase Fraud Risk?
It can, because every removed step or added field changes how easily fraud slips through your checkout. Pair conversion changes with post-checkout screening so you keep a fast checkout without inviting fraud.
Customize With the Dispute Ratio in Mind
Treat every checkout customization as two changes at once: one to conversion, one to dispute exposure. Measure both, keep the six-point test above in your release checklist, and put screening behind checkout rather than friction in front of it. That balance is what turns a fast checkout into a profitable one. Chargeflow has recovered $200M+ across 20,000+ merchants and plugs in through Chargeflow's Shopify app without touching a single checkout extension.
Win Back Chargebacks on Shopify, Automatically
Chargeflow integrates directly with your Shopify store to fight chargebacks and disputes for you, with no manual work required.

Chargebacks?
No longer your problem.
Recover 4x more chargebacks and prevent up to 90% of incoming ones, powered by AI and a global network of 20,000 merchants.













.png)
.webp)

.webp)