Get Your App Ready for Shopify Admin’s Fresh Look

Shopify’s admin UI is getting a visual overhaul starting September 15, 2026. Learn what changes, who’s affected, and the exact steps developers need to take—whether you rely on UI extensions or embed custom interfaces with Polaris.

Get Your App Ready for Shopify Admin’s Fresh Look
7 sections

Shopify is rolling out a brand‑new look for the admin experience on September 15, 2026. The refresh brings new colors, typography, spacing, and a re‑imagined side navigation. While the visual facelift is automatic for most extensions, apps that render their own UI inside App Home need to decide whether to stay with the old look or migrate to Polaris 2.0. This post breaks down the change, pinpoints who’s impacted, and gives developers a clear, actionable roadmap.

What’s Changing in the Admin UI

The refreshed admin introduces a slimmer side navigation that houses search, notifications, and the store picker. The old side panel that held the “Sidekick” chat moves to a floating widget at the bottom of the screen. Under the hood, the new design lives in a fresh CSS bundle that is served via the Polaris CDN. Functionality stays the same—only the visual layer is swapped.

Who Needs to Pay Attention

Two groups are directly affected:

  • Developers using Admin UI extensions or App Home UI extensions – these extensions automatically inherit the new styles as the rollout reaches a merchant’s store. No code changes are required.
  • Developers with embedded App Home pages built with Polaris Web Components 1.x or custom HTML/CSS – these apps keep their current look until the developer chooses to adopt Polaris 2.0. If you’re not using Polaris at all, you’ll need to migrate to the component library first to benefit from the new design.
  • Path 1 – Let Extensions Auto‑Update

    If your app’s UI lives entirely in Admin UI extensions (e.g., product‑detail blocks, navigation‑menu extensions) or in App Home UI extensions, the new stylesheet is applied automatically during the phased rollout. There’s nothing to ship—just monitor the rollout timeline and test a few stores once the new admin appears. The only thing to watch for is visual regressions caused by custom CSS that overrides Shopify defaults; consider removing heavy overrides to let the new design shine.

    Path 2 – Embedded App Home Apps Using Polaris 1.x

    Embedded apps that render a full App Home page with Polaris 1.0 components stay on the old look until you opt‑in to Polaris 2.0. Shopify has already released a Polaris 1.1 release candidate, and a Polaris 2.0 RC will follow soon. Migrating now gives you two big benefits:

  • Future‑proofing – When the 2.0 RC lands, you’ll be ready to flip the major version with a single import change.
  • Design consistency – Your app will match the new admin’s spacing, icon set, and color palette without a major redesign.
  • The migration path is straightforward:

    bash

    # 1️⃣ Install the Polaris 1.1 RC (or latest 1.x) if you haven’t already

    npm install @shopify/polaris@1.1.0-rc.0

    # 2️⃣ Upgrade your codebase to the new import syntax (no functional change)

    # Before

    import { Page, Card } from '@shopify/polaris';

    # After – same import works for 2.0, just bump the version later

    import { Page, Card } from '@shopify/polaris';

    # 3️⃣ Run the visual regression suite (Storybook, Percy, etc.) to catch any spacing or icon differences.

    npm test

    When the Polaris 2.0 RC becomes available, you’ll only need to update the package version:

    bash

    npm install @shopify/polaris@2.0.0-rc.0

    Because Polaris follows semantic versioning on the CDN, the switch is explicit—merchants will never see a half‑updated UI. The admin will automatically serve the 2.0 CSS bundle once your app requests it.

    Path 3 – Stay on Polaris 1.x (No Immediate Action Required)

    If you prefer to keep the current look, you can simply continue using Polaris 1.x or any custom UI you’ve built. Your app will not pick up the new admin styles on its own, and it will remain consistent across all merchants regardless of the rollout stage. This is a safe choice if you have a large UI overhaul planned for a later release.

    What to Do Right Now

  • Audit your app – Identify whether you rely on Admin UI extensions, App Home UI extensions, or an embedded App Home page.
  • For extension‑only apps – No code changes; just add a test store to your QA pipeline and verify the new admin renders correctly.
  • For embedded apps using Polaris 1.x
  • Upgrade to the Polaris 1.1 RC (or latest 1.x) to get bug fixes.
  • Run visual regression tests against the new admin preview (Shopify provides a “preview‑admin” flag in the partner dashboard).
  • When the Polaris 2.0 RC is announced, bump the package version and re‑run tests.
  • For apps not yet on Polaris – Consider migrating to Polaris 1.x first; this gives you a clean upgrade path to 2.0.
  • Monitor the rollout – Use the Partner Dashboard’s “Admin UI version” indicator to see which of your test shops have switched to the new look.
  • All of the above can be completed before the first merchant sees the new admin, ensuring a seamless experience when the rollout reaches 100 %.

    Conclusion & Call to Action

    Shopify’s visual refresh is a great opportunity to modernize your app’s UI and align with the platform’s design direction. If you’re already on UI extensions, sit back and let Shopify handle the styling. If you ship embedded App Home pages, start the Polaris migration now to avoid a rushed update later. Need help auditing your code or testing the new admin preview? Reach out to our Shopify Partner success team or drop a comment below—we’re happy to walk you through the process step‑by‑step.

    Tags
    Sources

    Related Articles

    Shopify Admin Gets a Fresh Redesign: What Merchants and Developers Need to Know
    Platform Updates

    Shopify Admin Gets a Fresh Redesign: What Merchants and Developers Need to Know

    Shopify rolls out a sleek new admin UI with updated colors, typography, spacing, and icons. Learn how the changes affect merchants and developers, and what steps you should take to stay ahead.

    September 15, 20264 min
    Platform Updates

    September 15, 20261 min
    Make family_name Optional for B2B Orders in Payments Apps API Requests
    Platform Updates

    Make family_name Optional for B2B Orders in Payments Apps API Requests

    Shopify’s latest update lets B2B checkouts omit the buyer’s surname (family_name) in shipping and billing addresses. Learn what changed, who’s affected, and how to update your Payments app validation today.

    September 15, 20264 min
    Delivery Options Metafields Unlocked: How Shopify Functions Can Now Read Custom Data
    Platform Updates

    Delivery Options Metafields Unlocked: How Shopify Functions Can Now Read Custom Data

    Shopify Functions can now read metafields attached to delivery options, enabling a clean contract between delivery generators and customization functions. Learn what changed, who it impacts, and how to update your GraphQL queries.

    September 15, 20265 min