European Accessibility Act

EAA compliance for Shopify: WCAG 2.1 AA checklist & fixes

Shopify storefronts inherit accessibility from the theme, but most paid and free themes ship with predictable WCAG 2.1 AA gaps: low-contrast sale badges, drawer carts that trap focus, product image carousels without keyboard support, and form fields without programmatic labels. Under the European Accessibility Act, B2C Shopify stores selling to EU consumers must reach WCAG 2.1 AA by 28 June 2025 — Liquid edits and a few app installs are usually enough. Powers ~10% of all e-commerce sites worldwide; the EAA covers consumer-facing online shops by default.

Category
E-commerce platform
Standard
WCAG 2.1 Level AA via EN 301 549
Deadline
28 June 2025 (EU consumer services)
Risk for B2C
High — public-facing, consumer-billed

What the EAA actually requires from a Shopify site

The European Accessibility Act (Directive 2019/882) applies to consumer-facing online services from 28 June 2025. For a Shopify site selling to EU consumers, that means the storefront, checkout, account area, and any embedded payment flow have to meet WCAG 2.1 Level AA via the harmonised standard EN 301 549. Microenterprises with under 10 employees and below €2 million in turnover are exempt for services, but not for products.

Fines vary by member state. Germany caps individual penalties at €100,000; France can fine up to 4% of group turnover; Spain reaches €600,000 for serious or repeated breaches. None of those numbers are theoretical — market surveillance authorities have already started auditing storefronts in Germany and France in the run-up to enforcement.

In practice, the work breaks down into three buckets: theme-level fixes (focus styles, contrast, semantics), interaction-level fixes (carousels, modals, drawers, gallery widgets), and content-level fixes (alt text, headings, descriptive link text). The list below covers the Shopify-specific failure points we see most often during scans.

Top WCAG failures we see on Shopify sites

Across hundreds of Shopify scans, the same handful of issues show up over and over. None of them require ripping the theme apart — most are fixable in a few hours by someone comfortable in the platform's editor or template files.

  • Color contrast on sale badges, "Add to cart" buttons and theme accents

    Themes default to brand colors that often fail the 4.5:1 ratio for body text or 3:1 for large text. Sale prices in red on white and gray placeholder text are the two most-flagged issues in our scans.

    1.4.3 Contrast (Minimum) — Level AA
  • Cart drawers and quick-view modals trap focus or break Esc

    Shopify themes commonly use a slide-in cart drawer that does not move focus into the dialog or restore focus on close. Users on a screen reader or keyboard get stuck on the page background.

    2.1.2 No Keyboard Trap, 2.4.3 Focus Order — Level A
  • Product image gallery is mouse-only

    Many themes implement zoom, swatch swap, and gallery navigation with mouse handlers (mouseenter/click) but no keyboard equivalents (Enter/Arrow), failing keyboard users.

    2.1.1 Keyboard — Level A
  • Form fields without programmatic labels

    Customer registration, address, and contact forms frequently use placeholder-only inputs or visually-hidden labels that screen readers do not pick up. Newsletter signups in the footer are the most common offender.

    1.3.1 Info and Relationships, 4.1.2 Name, Role, Value — Level A
  • Decorative product carousels auto-advance without controls

    Hero sliders that auto-rotate faster than 5 seconds with no pause/stop control fail WCAG and create distraction for users with vestibular disorders.

    2.2.2 Pause, Stop, Hide — Level A

Concrete code fixes for Shopify

Below are copy-paste fixes for the most common Shopify issues. They assume you have access to your theme code or the platform's custom-code injection panel. If you cannot edit code directly, share these snippets with whoever maintains the site — every one of them is a ten-minute change.

Liquid: ensure all icon-only buttons have an accessible name

Liquid
<button type="button" class="cart-toggle" aria-label="Open cart with {{ cart.item_count }} items">
  {% render 'icon-cart' %}
</button>

Use aria-label with a meaningful, dynamic name. Avoid "icon-cart" alone — screen readers announce nothing useful.

CSS: enforce focus visibility theme-wide

CSS
:where(button, a, [role="button"], input, select, textarea):focus-visible {
  outline: 2px solid var(--color-foreground);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgb(8 145 178 / 0.25);
}

Most Shopify themes remove default focus rings via outline:none. Replace with a visible, high-contrast focus indicator.

Cart drawer: trap and restore focus correctly

JavaScript
// Open
const lastFocused = document.activeElement;
drawer.removeAttribute('inert');
drawer.querySelector('[autofocus], button, a').focus();

// Close
drawer.setAttribute('inert', '');
lastFocused?.focus();

Use the inert attribute to hide background content from assistive tech, and restore focus to the element that opened the drawer.

Tools and plugins worth installing first

  • Theme Inspector (Shopify) — confirms HTML is semantic before deeper audits

  • axe DevTools browser extension for ad-hoc page checks

  • Certvo public scan — crawls product, collection, and cart pages and groups issues by template

How to scan a Shopify site without missing anything

Automated scanners catch about 30–40% of WCAG issues; the rest need manual review. The good news is that the 30–40% includes the most expensive issues to remediate after the fact, so an automated scan is the cheapest way to get unstuck. Run one before you change a line of theme code.

  • Scan at minimum: home, /collections/all, a product page, /cart, and the checkout login page.

  • Re-scan after changing the theme via Customize — most regressions come from new sections.

  • Run a logged-in scan against the customer account area; it is excluded from public crawls.

Run a free public scan against any Shopify URL right now — no signup, results in 60 seconds.

Frequently asked questions

Does Shopify make my store automatically EAA compliant?

No. Shopify provides the platform; you are responsible for theme, app, and content accessibility. Shopify's own admin is mostly accessible, but the public storefront depends entirely on the theme you choose.

What is the cheapest path to WCAG 2.1 AA on Shopify?

Pick an accessibility-vetted theme (Dawn, Sense, Studio), audit it with a tool like Certvo, fix contrast and labels in the theme settings, and add an accessibility statement page. This typically takes a developer 1–3 days.

Do Shopify accessibility apps replace the need for a real audit?

No. Overlay-style apps add a widget but do not fix the underlying HTML. Many fail WCAG themselves and several have been named in US lawsuits. Fix the source.

Other e-commerce platform platforms

Find every accessibility issue on your site in 60 seconds.

Free public scan. No card. AI-generated fixes for every issue we find.