---
title: "Shopify Checkout Extensibility: A Developer Guide"
description: "checkout.liquid is no longer supported. Learn how Shopify Checkout Extensibility works, UI Extensions, Functions, Web Pixels, and how to get started."
url: https://shoplab.cc/en/shopify-insights/shopify-checkout-extensibility-entwickler-guide
datePublished: 2026-03-23T14:34:06Z
---

[Back](https://shoplab.cc/en/blog)

Shopify Insights

# Shopify Checkout Extensibility: A Developer Guide

March 23, 2026 · 6 minutes reading time

![Portrait of Mark Chang, shoplab founder and CTO](https://shoplab.cc/images/team/mark.jpg)

Mark Chang

Founder & CTO

Anyone who has been developing on Shopify for a while knows the old method for customizing the checkout: opening `checkout.liquid`, hoping that nothing breaks with the next Shopify update, and accepting that Shop Pay compatibility was practically out of the question. This era is over.

Shopify Checkout Extensibility is the new foundation, and for developers, it changes everything: how checkout customizations are built, delivered, and maintained. Here's what you need to know.

---

## **What is Checkout Extensibility?**

Checkout Extensibility is Shopify's framework for checkout customizations through a modular, app-based system, rather than directly editing template files. It completely replaces `checkout.liquid` and is now the only supported way to customize the Shopify checkout.

It consists of four core tools that work together:

* **Checkout UI Extensions:** Integrate custom UI components at defined extension points in the checkout flow
* **Shopify Functions**: Extend or replace Shopify's server-side business logic (discounts, shipping, payments, cart validation)
* **Web Pixels**: Track customer events for analytics and advertising in a sandboxed, privacy-compliant environment
* **Branding API**: Programmatic control over the visual appearance of the checkout, beyond the checkout editor

---

## **Why Shopify deprecated checkout.liquid**

The problems with `checkout.liquid` were well-known. Customizations were tightly coupled with the checkout HTML, meaning every Shopify platform update was a potential breaking change. It was incompatible with Shop Pay. It couldn't be tested reliably. And it prevented merchants from benefiting from Shopify's ongoing performance and security improvements.

The migration took place in two phases:

* **August 13, 2024:** `checkout.liquid` disabled for contact, shipping, and payment steps
* **August 28, 2025**: `checkout.liquid`, script tags, and additional scripts disabled for the thank you and order status pages

If you haven't yet migrated your thank you and order status pages: this deadline has already passed. Existing legacy customizations on these pages will no longer render.

---

## **Checkout UI Extensions: The core building block**

UI Extensions allow you to embed custom UI into the checkout flow. They work through a system of **Extension Targets,** predefined slots where the component can be rendered.

### Two types of targets:

* **Static Targets:** bound to specific checkout steps such as contact information, shipping method selection, and order summary line items
* **Block Targets:** render anywhere in the checkout and are always visible, regardless of which steps are active (e.g., for order notes or global trust badges)

### Important technical details:

* Extensions are typically built with **Preact**, with hooks like `useState` and `useEffect` directly available
* The UI is rendered via **Polaris web components** via Remote DOM, not arbitrary HTML. `<script>` tags or CSS overrides are not possible
* Extensions run in an **isolated sandbox**, with no access to sensitive payment data or the checkout DOM
* All components automatically adopt the merchant's **branding settings** \- fonts, colors, corner radius, for a consistent checkout experience
* Development with the **Shopify CLI**, required for generating, developing, and deploying extensions

### What can be built with it:

* Upsell and cross-sell blocks
* Custom fields (gift messages, order notes, delivery instructions)
* Trust badges and loyalty point displays
* Address validation and custom shipping method messages
* Post-purchase survey pages
* Localized content for multi-language and multi-currency stores

---

## **Shopify Functions: Backend logic without a server**

Functions are WebAssembly-based modules that run on Shopify's infrastructure, allowing you to replace or extend Shopify's native server-side logic. They are among the most powerful parts of the Extensibility framework for developers with complex requirements.

### What Functions can do today:

* **Discount logic**: tiered discounts, bundle pricing, buy-X-get-Y rules, minimum order value promotions
* **Shipping customizations:** Show, hide, reorder, or rename shipping options based on cart content, customer tags, or geography
* **Payment customization**: Conditionally show or hide payment methods (e.g., hide cash on delivery for digital products)
* **Cart validation**: Block checkout if certain conditions are not met (minimum order quantities, restricted product combinations)

Functions are written in languages that compile to WebAssembly, with JavaScript/TypeScript being the most common choice for Shopify developers. They execute quickly, without cold starts and without managing your own infrastructure.

---

## **Web Pixels: Tracking without script tags**

One of the biggest pain points in the `checkout.liquid` era was conversion tracking. Custom script tags in the additional scripts field were the only option, error-prone, difficult to debug, and often conflicted with each other.

Web Pixels solve this problem by providing a sandboxed environment for tracking customer events. GA4, Meta, Google Ads, and other platforms now offer compatible pixel apps that utilize this framework. For individual tracking requirements, Shopify's Customer Events system allows for the creation of pixel extensions that fire on standard e-commerce events with access to structured checkout data.

---

## **What this means for developers in practice**

### The advantages:

* **Update-safe by Design:** the extension code is decoupled from the checkout HTML. When Shopify updates the platform, customizations continue to function
* **Distributable as Apps**: build once, deploy to any merchant. Public apps can be listed in the Shopify App Store; private apps can be installed on specific stores
* **Shop Pay compatible**: Extensions work on all Shopify checkout surfaces, including the accelerated Shop Pay flow
* **Over 860 Extensibility-based Checkout Apps** already exist in the ecosystem, with extensive documentation and community tooling

### Limitations to be aware of:

* **No arbitrary HTML or CSS**: work is done within Polaris components; deviations from the merchant's branding settings are not possible
* **UI Extensions for contact, shipping, and payment steps are only available for Shopify Plus:** on lower plans, customizations are limited to thank you and order status pages
* **Sandboxed environment**: no access to the checkout DOM, no global web APIs. Those who previously relied on DOM manipulation must fundamentally rethink their approach
* **Functions require WebAssembly**: JavaScript compiles easily, but the runtime environment differs from what most developers are familiar with; local testing requires the Shopify CLI

---

## **Customer Account Extensions: What's new in 2025**

In Shopify's Summer 2025 Edition, the Checkout Extensibility APIs were extended to the customer account area. Developers can now embed custom sections, tabs, and tools directly within the customer account dashboard, including loyalty point displays, past order details, subscription management, without needing an external portal or a separate storefront.

This is a significant expansion for agencies building loyalty programs, subscription flows, and B2B self-service portals on Shopify.

---

## **Getting Started**

The recommended entry point for developers new to Checkout Extensibility:

* **Set up Shopify CLI,** it is required for all extension development
* Read the [Checkout UI Extensions documentation](https://shopify.dev/docs/api/checkout-ui-extensions/latest) on Shopify.dev for the current API version
* Use the **Checkout Customization Report** in the Shopify Admin to check which legacy customizations still need to be migrated (`admin.shopify.com/store/YOUR-STORE-NAME/settings/checkout/customizations-report`)
* Start with the first extension on the thank you page (checkout extensions are part of what we build every day - more on [Shopify app development](https://shoplab.cc/en/shopify-app-development)), lower complexity, available on all plans, ideal for understanding the extension model before tackling Plus-exclusive checkout steps

---

## **Conclusion: The old way is history, the new way is better**

Checkout Extensibility is not a workaround or a compromise; it is a fundamentally better architecture for checkout customizations. The limitations that initially seem restrictive (no arbitrary CSS, no DOM access) are precisely what makes extensions update-safe, performant, and secure.

For developers, this is the maturation of the Shopify ecosystem. The tooling is solid, the documentation is comprehensive, and a library of patterns and reference apps is growing. Anyone still maintaining `checkout.liquid` code for a client should start planning the migration now - our [Shopify development](https://shoplab.cc/en/shopify-development) team helps with the theme-side work.

A good example of what extensions and custom configurators make possible is the [bundle builder we built for Simple Pledge](https://shoplab.cc/en/cases/simple-pledge).

1. [01What is Checkout Extensibility?](#what-is-checkout-extensibility)
2. [02Why Shopify deprecated checkout.liquid](#why-shopify-deprecated-checkout-liquid)
3. [03Checkout UI Extensions: The core building block](#checkout-ui-extensions-the-core-building-block)
4. [04Shopify Functions: Backend logic without a server](#shopify-functions-backend-logic-without-a-server)
5. [05Web Pixels: Tracking without script tags](#web-pixels-tracking-without-script-tags)
6. [06What this means for developers in practice](#what-this-means-for-developers-in-practice)
7. [07Customer Account Extensions: What's new in 2025](#customer-account-extensions-what-s-new-in-2025)
8. [08Getting Started](#getting-started)
9. [09Conclusion: The old way is history, the new way is better](#conclusion-the-old-way-is-history-the-new-way-is-better)

Get a free consultation

Expert guidance tailored to your Shopify business.

Got questions?

## Let's clear things up!

We've gathered the most asked questions with answers to help you better understand our services.

 

![Portrait of a shoplab team member](https://shoplab.cc/images/faq/faq-contact.jpg)

Still have a question?

Let's have a call and clear things up.

### Do you only work with Shopify?

Yes. We have worked exclusively with Shopify and Shopify Plus since 2020, and turning down other platforms is what got us here. The trade is deliberate: a team that sees the same platform every day knows which problems have a native solution, which need an app, and which need custom code - so less of your budget goes into rediscovering that. It also means we follow Shopify's own conventions instead of porting patterns over from Magento or WooCommerce, which is what keeps a store upgradeable after we hand it over.

### What services do you offer?

Strategy & consulting, custom Shopify theme development, custom app development, store migrations, UX/UI design, integrations & middleware, ongoing store management, and AI e-commerce readiness. Most projects combine three or four of those: a migration usually arrives with an ERP integration and a redesign attached, and a redesign usually surfaces a performance problem. Everything runs through one team, so a design decision and its development consequence get settled together rather than negotiated between two agencies.

### Can you redesign my existing Shopify store?

Absolutely, and it is one of the most common ways clients start with us. We audit the current store first - conversion path, page performance, and the templates that carry the most revenue - then redesign against what the audit found rather than against a moodboard. Your products, customers, orders and URL structure stay where they are, so rankings and store data are not at risk. Redesigns can also ship in stages: the pages that sell first, the rest afterwards, so you see the effect before the whole budget is committed.

### Do you build custom Shopify themes?

Yes, from scratch rather than by reskinning a marketplace template. A custom theme means the sections your merchandising team actually needs, editable in the theme editor without a developer, and no inherited code for features you will never use. That last part is the performance argument: off-the-shelf themes carry the union of every use case they were sold for, and you pay for it in Core Web Vitals on every page load. We build against your catalogue and your content model, then hand over documentation so your team can run it.

### Can you migrate my store from another platform?

Yes - WooCommerce, Magento, Shopware and other platforms, in a staged, low-risk process. Products, variants, customers and order history come across, and every indexed URL gets a mapped 301 so the rankings you already earned survive the move. What decides the timeline is rarely catalogue size: it is data structures with no direct Shopify equivalent (bundles, configurable products, customer-specific pricing) and the systems your store talks to. We inventory both before a cutover date is set, which is why our migrations do not end with a redirect list written the night before launch.

### How long does a Shopify project take?

It depends on scope: focused improvements often take 4-6 weeks, while full custom builds or migrations typically run 8-16 weeks. A store moving onto a configured theme is usually live in 4-8 weeks; a fully custom storefront runs closer to 10-16\. You get a timeline with defined milestones before we start, and those milestones are staged releases rather than one launch date at the end - so a delay in one area does not push everything behind it. What moves a timeline most is late scope additions and integrations nobody inventoried at the start.

### Will my Shopify store be optimized for mobile?

Always. We design mobile-first because that is where most e-commerce traffic sits, and where most of the conversion loss happens. Every store is tested on real devices rather than a resized browser window, and measured against Core Web Vitals - largest contentful paint, interaction latency, layout shift - before it goes live. Image handling, font loading and third-party scripts get the most attention, because apps are usually what turn a fast theme into a slow store. Performance is a launch requirement here, not a follow-up ticket.

### Do you provide ongoing support after launch?

Yes. Store management plans cover Shopify and app updates, iterative improvements, testing and technical support, on a monthly scope you can adjust as priorities change. Most stores need the first weeks after launch more than they expect: real traffic finds edge cases staging never produced, and the analytics only start telling the truth once volume arrives. After that, ongoing work tends to be conversion iterations on the templates that carry revenue, seasonal campaign support, and keeping the theme current as Shopify ships platform changes.

### Can you improve my store without rebuilding everything?

Definitely, and we will say so when a rebuild is not the right call. We often work in focused iterations - a conversion audit, performance optimization, or redesigning the handful of templates that carry most of the revenue - shipped as staged releases with measurable outcomes instead of a big-bang relaunch. For a store that already converts this is usually the better economics: you keep what works, spend where the data points, and avoid the risk window a full replatform opens. A rebuild earns its cost when the underlying theme or data model is the actual constraint.

### How do we get started?

Book a free strategy call - about thirty minutes, and you keep whatever comes out of it. We ask what you run today: platform, catalogue structure, connected systems, and what should be better after the project. From there you get a written proposal covering scope, timeline and pricing, with named work blocks rather than one number. If the call shows that what you need is smaller than an agency project, we will tell you that too. It is a cheaper conversation for both of us than finding out in month two.

[Read more questions](https://shoplab.cc/en/faq)

More articles

## Related blogs

Explore more insights, ideas, and practical resources to support your e-commerce journey and inspire your next move.

[View all blogs](https://shoplab.cc/en/blog)

* [![Infographic: migrating from Magento, WooCommerce or Shopware to Shopify - 8 weeks to 12+ months, 100-250 hours.](https://shoplab.cc/images/blog/replatforming-shopify-kosten-zeitplan.webp)Shopify InsightsReplatforming to Shopify: Timelines and Real Costs](https://shoplab.cc/en/shopify-insights/replatforming-shopify-kosten-zeitplan)
* [![Infographic: 55% of Shopify sales come from niches and 71% of AI-attributed orders go to specialists.](https://shoplab.cc/images/blog/long-tail-shopify-ki-entdeckung.webp)Shopify InsightsThe Long-Tail Shift: Why Specialists Win Now](https://shoplab.cc/en/shopify-insights/long-tail-shopify-ki-entdeckung)
* [![Infographic: Shopify Plus from $2,300 a month, 10 expansion stores, native B2B, worth it from about $80K monthly revenue.](https://shoplab.cc/images/blog/shopify-plus-enterprise-funktionen-preis.webp)Shopify InsightsShopify Plus: What Enterprise Brands Really Get](https://shoplab.cc/en/shopify-insights/shopify-plus-enterprise-funktionen-preis)
* [![Infographic comparing custom-built stores at €10,000+ over 3-12 months with a Shopify custom theme in 4-8 weeks.](https://shoplab.cc/images/blog/shopify-vs-custom-built-kostenvergleich.webp)Shopify InsightsShopify Development Costs vs. Building Custom](https://shoplab.cc/en/shopify-insights/shopify-vs-custom-built-kostenvergleich)
* [![Bar chart of 2025 market share: WooCommerce 33.4%, Shopify 26.2%, Magento about 8%, plus Shopify GMV of $292B.](https://shoplab.cc/images/blog/shopify-vs-woocommerce-vs-magento-marktanteile-2025.jpg)Shopify InsightsShopify Market Share 2025 vs WooCommerce & Magento](https://shoplab.cc/en/shopify-insights/shopify-vs-woocommerce-vs-magento-marktanteile-2025)
