Shopify Accessibility Guide: Themes, Apps & WCAG Compliance (2026)

Published April 29, 2026 · 17 min read · By Accessalyze

Shopify powers over 4 million online stores. E-commerce is the single most sued category under ADA Title III, and Shopify stores are frequent targets. This guide covers everything you need to make your Shopify store WCAG 2.1 AA compliant: how to choose an accessible theme, the best accessibility apps, and a full audit checklist.

Shopify is one of the most accessible e-commerce platforms available when configured correctly. Shopify's own engineering team has invested significantly in accessibility improvements to Checkout and Dawn (their reference theme). But the reality for most merchants is more complicated: third-party themes, custom apps, and content choices regularly introduce WCAG violations that create legal exposure and drive away disabled shoppers.

Disabled consumers represent a $490 billion annual purchasing segment in the United States alone. An inaccessible Shopify store doesn't just create legal risk — it actively turns away customers who are ready to buy.

See how 321 websites scored →

View the 2026 Report

Shopify's Built-in Accessibility Features

Before customizing your store, it helps to understand what Shopify provides by default.

Shopify Checkout

Shopify's managed checkout (the standard checkout flow, not Shop Pay or custom checkouts) has been substantially improved for accessibility. As of 2025, Shopify's checkout meets most WCAG 2.1 AA requirements for the standard flow. This is one of the strongest arguments for using Shopify's hosted checkout rather than a custom implementation — you inherit Shopify's ongoing accessibility investment.

Shopify Checkout advantage: Shopify Plus merchants who use the standard Checkout can rely on Shopify's accessibility team maintaining WCAG compliance. Merchants who implement headless checkouts or heavily customized Checkout Extensibility flows take on full accessibility responsibility for those customizations.

Dawn Theme (Shopify's Reference Theme)

Dawn, Shopify's free reference theme introduced in 2021, is built to accessibility standards and serves as the baseline for Theme Store quality. It includes:

Shopify Online Store 2.0

OS 2.0 themes (introduced with Dawn) use JSON templates and sections everywhere — a more flexible architecture that, when implemented correctly, produces cleaner, more accessible HTML output than older sectioned themes.

Choosing an Accessible Shopify Theme

Theme selection is the highest-impact accessibility decision for your Shopify store. Shopify's Theme Store now requires submitted themes to meet accessibility standards, but compliance varies significantly between themes.

What Makes a Shopify Theme Accessible

Most Accessible Shopify Themes

Dawn Free

Shopify's own reference theme and the most accessible option available. If you are building a new store or migrating, Dawn is the safest starting point. Its accessibility features are actively maintained by Shopify's team and serve as the floor that other Theme Store themes are held to.

Sense Free

A clean, minimal Shopify-made theme built on the same accessibility foundation as Dawn. Good for health, wellness, and beauty brands. Inherits Shopify's accessibility maintenance commitment as a first-party theme.

Craft Free

Shopify-made theme designed for artisan and craft brands. First-party theme with consistent accessibility maintenance. Strong typographic hierarchy that naturally supports heading structure.

Impulse Paid — $380

One of the most popular premium themes in the Shopify Theme Store and generally well-maintained for accessibility. Includes robust keyboard navigation, ARIA-labeled product interactions, and accessible filtering. Used by many high-volume merchants.

Prestige Paid — $380

Premium theme for luxury and fashion brands. Strong focus styles and accessible image handling. Requires verification of contrast ratios when using the darker color schemes. Well-regarded for its clean, semantic HTML output.

Page builder warning: If you use Shogun, PageFly, or GemPages to build product pages or landing pages, those pages inherit the accessibility quality of the page builder, not your theme. Page builder-created content is a common source of accessibility regressions on Shopify stores.

Best Shopify Accessibility Apps

Shopify's App Store has several apps that address accessibility gaps. However, be cautious about "accessibility overlay" apps that promise automated WCAG compliance — these tools do not provide genuine compliance and have been criticized by leading accessibility organizations and disability rights advocates.

What to Use (and What to Avoid)

Avoid accessibility overlay apps. Apps that inject a floating toolbar claiming to make your site accessible (AccessiBe, UserWay, AudioEye overlays) do not achieve WCAG compliance and can actively harm screen reader users by conflicting with assistive technology. The National Federation of the Blind and other disability rights organizations have formally opposed these products.

Accessible — ADA & WCAG Compliance Freemium

Provides detailed accessibility audit reports for your Shopify store, with specific guidance on which Liquid files and sections contain violations. More useful as a diagnostic and tracking tool than as a fix-all overlay. Helps prioritize remediation work without the problematic overlay approach.

Image Alt Text — AI Alt Text Freemium

Automatically generates alt text for product images using AI. Addresses one of the most common WCAG violations on Shopify stores — missing alt text on product images. Review AI-generated alt text before publishing; quality varies by image type. Best for stores with large product catalogs where manual alt text is impractical.

Recart: SMS & Email Pop Ups Paid

Mentioned as a contrast: if you use any popup or exit-intent app, verify that the popup is keyboard operable, focus is trapped correctly within it (or properly managed), and it can be dismissed with the Escape key. Most popup apps are not accessible by default.

Common Shopify WCAG Violations

Violation WCAG Criterion Common Source on Shopify
Missing alt text on product images 1.1.1 Non-text Content Products uploaded without alt text in Shopify admin
Insufficient color contrast 1.4.3 Contrast Minimum Theme color scheme customization, sale badge colors, product tag badges
Inaccessible product variant selectors 1.3.1 Info and Relationships Color swatch apps, custom variant selector apps without labels
Keyboard trap in cart drawer 2.1.2 No Keyboard Trap Cart drawer implementations without focus management
Autoplay video on homepage 1.4.2 Audio Control / 2.2.2 Pause Stop Hide Hero video sections, banner video backgrounds
Inaccessible size guide modal 4.1.2 Name, Role, Value Third-party size guide apps without ARIA modal implementation
Missing focus indicators 2.4.7 Focus Visible Custom CSS overriding theme focus styles
Unlabeled quantity input 1.3.1 Info and Relationships Product page quantity spinners without visible labels

Shopify Product Image Accessibility

Product images are the most common source of WCAG 1.1.1 violations on Shopify stores. Every product image needs descriptive alt text that conveys what the image shows — not the filename, not "product image," but an actual description.

Setting Alt Text in Shopify

In the Shopify admin, navigate to Products → [Product Name] → [Image] and click the image to access the alt text field. For variant images, each variant image can have its own alt text.

Best Practices for Product Image Alt Text

Shopify Product Variant Accessibility

Variant selectors — for size, color, material, and other attributes — are a frequent source of accessibility failures on Shopify stores, particularly when custom swatch apps replace the default dropdown.

Making Variant Selectors Accessible

Shopify Accessibility Audit Checklist

Product Pages

Navigation and Cart

Checkout (Custom Customizations)

Homepage and General

Scan Your Shopify Store Free

Run a free WCAG 2.1 accessibility scan on any page of your Shopify store. Get a full violation report with severity ratings in under 60 seconds.

🔍 Scan My Shopify Store →

Shopify Liquid Theme Customization for Accessibility

If you need to customize your theme's Liquid templates for accessibility, these are the most common changes merchants make:

Adding Alt Text to Theme Images

Ensure your product image tags output the Shopify alt text attribute:

{{ image | image_url: width: 800 | image_tag: alt: image.alt }}

Never leave the alt attribute empty for informative images. If an image is purely decorative, pass an empty string explicitly: alt: "".

Improving Focus Visibility

If your theme uses outline: none in its CSS, replace it with a visible focus style. A minimum-viable replacement:

*:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 2px;
}

Skip Navigation Link

If your theme lacks a skip navigation link, add it as the first element inside <body> in your theme.liquid:

<a href="#MainContent" class="skip-to-content-link button visually-hidden">
  Skip to content
</a>

Shopify App Accessibility Impact

Every app you install can affect your store's accessibility. Before adding any app, especially those that modify your storefront UI, test a staging version for keyboard operability and screen reader compatibility.

The highest-risk app categories for accessibility regressions:

Shopify Accessibility Action Plan

  1. Start with a scan — identify your current violations before making changes
  2. Audit your theme — test keyboard navigation, focus indicators, and contrast; switch to Dawn or a first-party Shopify theme if your current theme has pervasive issues
  3. Fix product alt text — bulk update missing alt text; it's the most common violation and fast to fix
  4. Test your cart and checkout flow — these are the highest legal-risk pages on any e-commerce site
  5. Review your apps — test every app that modifies the storefront for keyboard and screen reader compatibility
  6. Avoid overlays — accessibility overlay apps do not provide compliance and are actively harmful to screen reader users
  7. Publish an accessibility statement — document your commitment and provide a feedback channel for users who encounter barriers
  8. Schedule quarterly scans — Shopify's platform, your theme, and your apps all update frequently; test after major changes

Shopify accessibility is achievable for every merchant — the platform provides strong foundations through its first-party themes and managed checkout. The key is auditing what's been added on top of those foundations and remediating the gaps.


Related guides: WordPress Accessibility Guide · Wix Accessibility Guide · WCAG for E-Commerce · ADA Website Compliance 2026

Try it yourself

Enter your website URL to get a free accessibility score.

Check your website accessibility score free Scan Now →