WCAG 2.2.4: Interruptions

Level AAA

Quick answer: Interruptions should be postponable or suppressible unless they are genuinely urgent.

What This Means

On ecommerce sites, Interruptions usually shows up in repeating storefront components such as product cards, PDP media, search results, cart drawers, checkout forms, and support content. If the live experience depends on patterns like loyalty popups interrupt checkout while users fill payment details. or support chat greetings steal attention during order tracking., disabled shoppers can lose context or get blocked before purchase.

This criterion matters because D2C teams often fix the homepage but miss reusable app blocks, campaign pages, and mobile-specific UI. The practical standard is simple: build the same outcome for keyboard users, screen-reader users, low-vision users, and anyone relying on captions, labels, structure, or predictable behavior.

For Shopify, WooCommerce, and custom storefronts, the fastest remediation path is usually template-level work. Fix the repeated component once, then retest every place it appears across browse, buy, and post-purchase journeys.

Common Violations on Ecommerce Sites

How to Fix It

Start with the live customer journey, not isolated components in Storybook or Figma. Audit the problem on category pages, product detail pages, quick views, cart, checkout, account, and help templates.

  1. Suppress non-essential popups during focused tasks like checkout and account recovery.
  2. Let users postpone or dismiss marketing interruptions for the session.
  3. Reserve assertive interruptions for security or legal emergencies only.
  4. Coordinate marketing scripts so they respect task context and accessibility settings.

On Shopify, fix the theme section or app block that repeats the defect. On WooCommerce and WordPress, update the template override or plugin output. In custom React or headless storefronts, move the fix into shared components so merchandisers cannot reintroduce the issue with every campaign.

Code Example

<!-- Before -->
openPopup('Join SMS for 10% off');

<!-- After -->
if (!isCheckoutPage) openPopup('Join SMS for 10% off');

FAQ

What is WCAG 2.2.4?
Interruptions should be postponable or suppressible unless they are genuinely urgent.

How does WCAG 2.2.4 affect ecommerce sites?
It affects ecommerce anywhere shoppers interact with loyalty popups interrupt checkout while users fill payment details. and support chat greetings steal attention during order tracking. If those patterns are inaccessible, customers can miss product information, fail forms, or abandon checkout.

How to fix WCAG 2.2.4 violations?
Start by auditing the live storefront, then Suppress non-essential popups during focused tasks like checkout and account recovery.; Let users postpone or dismiss marketing interruptions for the session.; Reserve assertive interruptions for security or legal emergencies only.. Prioritize templates and apps that repeat the issue across product, cart, checkout, and account pages.

Check if your store passes WCAG 2.2.4 → Free ADA Compliance Scan