Filed under Shopify Platform Time-sensitive Migration guide

The Shopify Scripts sunset.
What merchants need to do
before June 2026.

About the author
Taylor Sicard

Early Shopify employee who built the Partner Program. Co-founded WIN Brands Group, scaling individual brands to eight figures and the portfolio to nine-figure revenue. Founded and sold getuptime.co to Tiny. Now advises DTC brands, Shopify app founders, and Fortune 500 commerce teams.

Full background →
A field guide for Plus merchants with five weeks on the clock.
Author
Published May 22, 2026
Read 14 min  ·  ~2,750 words
Ring I  ·  Consumer Commerce
+ + + + Time-sensitive

The window to edit or create Shopify Scripts closed on April 15, 2026. Scripts stop running entirely on June 30, 2026 — roughly five weeks from now. If you haven't audited your store yet, this is the post to read first.

A merchant I know found out about the Scripts deadline the hard way. A customer emailed saying their bulk discount wasn't applying at checkout. No error message. No warning in the Shopify admin. Just a discount that silently stopped working.

They spent an hour troubleshooting before realizing: their Line Item Script — the Ruby code that had been powering a tiered discount for three years — was gone. Not broken. Gone. Because June 30 had come and Shopify had pulled the plug.

That story isn't hypothetical. It's the exact scenario thousands of Shopify Plus merchants are heading toward right now. The difference between that merchant and you is that you're reading this today, with five weeks still on the clock.

Here's what Shopify Scripts actually are, why Shopify is retiring them, and the step-by-step process to migrate before your checkout starts misbehaving.

01 / Timeline · Two deadlines, one already passed

Two deadlines.
One already passed.

Shopify announced the Scripts deprecation in 2024, with a June 2025 original deadline that was pushed back twice. The final timeline has two distinct dates that matter:

SCALE 1:1 · REV. 2026.05
2024 ANNOUNCED APR 15 / 2026 EDIT WINDOW CLOSED +37 DAYS AGO TODAY MAY 22 / 2026 ~5 WEEKS REMAIN JUN 30 / 2026 SCRIPTS OFF STOP RUNNING TSC-2026/B01 · FIG. 01 · DEPRECATION SCHEDULE — TWO-DATE TIMELINE
The Shopify Scripts deprecation timeline. The April 15 editing cutoff has already passed — Scripts stop executing entirely on June 30, 2026.

April 15, 2026 (already passed): Shopify disabled the ability to create or edit Scripts in the Script Editor. Any Script that was live on April 14 is still running — but frozen. You can't fix a bug, adjust a discount threshold, or tweak a shipping rule. What's there is what's there.

June 30, 2026 (five weeks away): All Scripts stop executing. Completely. Discounts won't apply, shipping rules won't fire, payment gateway logic won't run. Customers will hit your checkout without any of the customization you've built over the years.

The Scripts that are live today will keep running until June 30 — but if anything breaks between now and then, you have no way to fix it.

02 / Definition · What Shopify Scripts actually do

What Shopify Scripts
actually do.

Scripts are small pieces of Ruby code that run in the background during checkout. They were introduced as a Shopify Plus-only feature and gave merchants a way to build custom checkout logic that wasn't possible through Shopify's standard discount and shipping settings.

There are three types. It's worth knowing which ones you're using because the migration path differs by type.

TYPE I  / Line Item

Line Item
Scripts

Control pricing and discounts on individual cart items. Common uses: tiered pricing (buy 3, save 10%), BOGO deals, customer-tag-based discounts, bundle pricing.

TYPE II  / Shipping

Shipping
Scripts

Control which shipping methods appear and what they cost. Common uses: free shipping thresholds by product type, hiding carrier options, discounted shipping for loyalty customers.

TYPE III  / Payment

Payment
Scripts

Rename, reorder, or hide payment methods at checkout. Common uses: hiding certain payment options for specific countries, reordering gateways by preference, showing/hiding based on cart size.

If you're not sure which types you have, jump to the audit section below before reading further. Knowing what you're working with changes everything about how you approach this.

Taylor Sicard · Consulting

This is the work I do with clients. Early Shopify employee, DTC co-founder, software exit — the ecosystem from all three angles. The form takes two minutes.

Start the conversation
03 / Successor · What's replacing Scripts

What's replacing Scripts
(and why it's actually better).

Shopify Functions are the new infrastructure for checkout customization. They've been in development since 2022 and are now mature enough that Shopify is comfortable making the hard cut.

The key difference for merchants: Functions run faster, work on all Shopify plans (not just Plus), and are available through apps in the Shopify App Store — meaning most merchants won't need a developer at all.

Specification
Shopify ScriptsLEGACY · DEPRECATED
Shopify FunctionsSUCCESSOR · ACTIVE
Who can use it
Shopify Plus only
All Shopify plans
Execution speed
Ruby, server-side · variable latency
WebAssembly · sub-5ms execution
Setup
Requires a developer
No-code apps available
Future support
Ends June 30, 2026
Shopify's long-term platform
Customization surface
Script Editor (deprecated)
App installs + Functions API
Extension points
Line items, shipping, payments only
Cart validation, order routing, fulfillment, post-purchase + more
Language
Ruby only
JavaScript, TypeScript, Rust

The performance gap is more meaningful than it sounds. Scripts ran Ruby on Shopify's servers, with cold start overhead and variable latency that got worse under load — Black Friday was notoriously rough for stores with complex Scripts. Functions compile to WebAssembly and run in under 5ms, every time. Shopify enforces that as a hard execution budget. There's no cold start, no CPU throttling during a flash sale, no latency spike when thousands of carts hit checkout simultaneously. If your Scripts were occasionally causing checkout slowdowns, this is the fix.

The reach is also different. Scripts were locked to three surfaces: line items, shipping, and payments. Functions go further — cart and checkout validation (block checkout with a custom error when business rules aren't met), order routing to control which fulfillment location ships what, and a growing list of extension points Shopify has been shipping quarterly since 2022. A merchant running complex wholesale rules or multi-location fulfillment will find more to work with in Functions than Scripts ever offered.

On the developer side: Functions are written in JavaScript, TypeScript, or Rust — not Ruby. Shopify CLI handles compilation via its own JavaScript-to-WebAssembly toolchain (Javy), so the development experience is closer to what most Shopify developers already know. For most merchants, though, none of that matters directly. No-code apps built on Functions handle the common patterns — tiered discounts, BOGO, free shipping thresholds, payment method visibility — without anyone writing a line of code.

+ + + + Plan access — a nuance worth knowing

Any Shopify store can install a public app from the App Store that uses Functions under the hood — that's how most no-code migrations work. Only Shopify Plus merchants can deploy custom (private) Functions: proprietary logic built specifically for your store via the Functions API. If you're on a standard plan, the no-code app path is your only route for custom checkout logic. If the Scripts deadline is prompting you to think about upgrading, here's the full framework for whether Plus is actually worth it at your revenue stage.

04 / Audit · Step one for every merchant

Step one: find out what
Scripts you're actually running.

Before you do anything else, you need to know what's live in your store. A surprising number of merchants discover they have Scripts they forgot about — set up years ago by a developer, quietly running in the background.

+ + + + How to access your audit

In your Shopify admin, go to Apps > Script Editor. If you see the "Replace your Shopify Scripts" banner, click it. This opens your personalized Shopify Scripts Customizations Report — a generated page that shows every active Script in your store, organized by type, with recommended replacement apps for each one.

You can also navigate directly to Settings > Checkout > Scripts and export the report as a CSV.

The Customizations Report is worth spending 10 minutes in. Shopify has done the work of mapping your specific Scripts to the apps and Functions APIs that can replace them. It's not a generic list — it's tailored to what's actually running in your store.

What you're looking for in the audit: which Script types are active (Line Item, Shipping, Payment), what each one does, and whether it's business-critical or vestigial. Some merchants find Scripts that haven't been relevant in two years. Others find their entire discount strategy sitting in one Script file.

05 / Options · Three migration paths

Your three
migration paths.

Once you know what Scripts you're running, the migration decision is actually pretty simple. There are three ways to go, and which one fits depends on what you're replacing and how complex it is.

SCALE 1:1 · REV. 2026.05
START AUDIT YOUR SCRIPTS DECISION 01 COMMON USE CASE? tiered / BOGO / free-ship YES → ← NO PATH 01 / RECOMMENDED INSTALL A NO-CODE APP — most merchants land here DECISION 02 HAVE A DEV? or budget for one YES ↓ ← NO PATH 02 / CUSTOM FUNCTION BUILD PATH 03 / HYBRID APP + HIRE OUT
A simple framework for deciding your migration approach based on what Scripts you're running and the resources available.

Path 01 / Install a no-code app (most merchants)

For the most common Script use cases — tiered discounts, BOGO, free shipping thresholds, hiding or reordering payment methods — there's a no-code app that handles it. These apps are built on Shopify Functions under the hood, so they're Shopify-approved replacements, not workarounds.

Sway Functions APP / GP

Custom discount, shipping, and payment rules without code. Good general-purpose replacement for most Line Item and Shipping Scripts.

Nexus Functions Creator APP / MULTI

No-code interface for discount, payment, delivery, and validation Functions. Strong for merchants with multiple active Scripts.

Function Junction Promos APP / PROMO

Campaign builder for custom discounts, bundles, and shipping rules. Good for promotional logic that changes frequently.

Kite · Discount & Free Gift APP / GIFT

Focused on the most common discount Script patterns. Well-suited for gift-with-purchase and tiered discount logic.

Your Scripts Customizations Report will surface apps specific to what's running in your store, so use that as your primary source. The apps above are a starting point, not an exhaustive list.

Path 02 / Custom Function development (complex or proprietary logic)

Some Scripts were built to handle genuinely custom logic — deep integrations with third-party systems, unusual pricing structures, logic that's tightly coupled to your business rules. A no-code app won't recreate that.

For those cases, a Shopify developer can build custom Functions using Shopify's Functions API. The developer experience is different from Scripts (WebAssembly instead of Ruby), so make sure whoever you hire is familiar with the current Functions platform specifically — not just Shopify development generally.

If you need to hire for this, don't wait. Lead times for Shopify developers familiar with Functions are running 2 to 4 weeks right now, and June 30 isn't moving.

Path 03 / Hybrid approach (most realistic for complex stores)

Many stores with 3 or more active Scripts will find that some can go to no-code apps, one or two need custom development, and a couple are actually unused and can be retired. Map your Scripts against all three outcomes before you commit to any one path.

06 / Execution · The five-week action plan

The five-week
action plan.

You have roughly 38 days. Here's how to use them without scrambling at the end of June.

01 Audit

Run your
Scripts audit

Go to Apps > Script Editor in your admin and open the Customizations Report. Export it as a CSV and share with whoever handles your tech decisions.

~20 MIN · TODAY
02 Triage

Categorize
by impact

For each Script, ask two questions: is it business-critical, and is the logic standard or custom? High-impact standard logic → app. High-impact custom → dev. Low-impact → retirement.

1 DAY · WEEK 1
03 Install

Test no-code
replacements

Start with the recommended apps in your report. Install on a staging environment first. Run your checkout through the scenarios your Scripts were handling. Don't kill a Script until the replacement is confirmed.

1–2 WEEKS · WK 1–2
04 Engage

Hire dev
for custom work

If you have Scripts that need custom Function development, begin that process now. The build time may be short, but getting a developer scheduled takes time. Brief them on your Customizations Report export.

START THIS WEEK
05 Verify

Validate
before Jun 20

Don't cut it to June 29. Give yourself a week of buffer to catch edge cases — unusual discount logic, shipping rules that behave differently in production, payment ordering quirks. Real checkout, real products.

BUFFER · WK 5

07 / Closing · The bigger picture

The bigger
picture.

Scripts were always a stopgap. Ruby code running in a sandboxed environment on Shopify's servers, doing things the platform was never built to handle at the volume merchants were pushing it to. The fact that it worked as well as it did, for as long as it did, is genuinely impressive. But Shopify was always going to replace it with something native to how checkout actually runs at scale.

Functions are that replacement — not a better workaround, actual infrastructure. If you migrate well, your checkout gets faster, your discount and shipping logic becomes easier to modify without calling in a developer, and you're building on a platform Shopify is actively investing in. If you don't migrate, your checkout stops working on July 1. That's the whole equation.

One thing worth noting for anyone who's been in the Shopify ecosystem long enough: the extension points for Functions are still growing. Cart and checkout validation, order routing, fulfillment location rules — none of that existed with Scripts. Merchants who make this transition now are moving onto a platform that will keep getting more capable, not less.

+ + + + Quick reference · key links

Your Customizations Report: Shopify Admin → Apps → Script Editor → Replace Shopify Scripts

Shopify's official migration guide: help.shopify.com — Transitioning from Scripts to Functions ↗

Functions API docs (for developers): shopify.dev — Migrating from Shopify Scripts ↗

Not sure where to start?

A second pair of eyes
on your migration.

I've helped Shopify merchants navigate platform transitions like this for over a decade — from the early days of the partner ecosystem to today's Functions cut-over. If your Scripts situation is complex, or you want a second opinion before you commit to a migration path, I'm happy to take a look.

Book a scoping call hello@taylorsicard.com
Commerce Dispatch

The operator's edge on commerce & SaaS

Practitioner-level breakdowns for founders, operators, and builders in the Shopify ecosystem. No filler — just signal.