Back to Blog
AccessiBe Alternative for Shopify After the FTC $1M Fine — Why Source-Code Fixes Win in 2026 — featured image

AccessiBe Alternative for Shopify After the FTC $1M Fine — Why Source-Code Fixes Win in 2026

Vijaygopal Balasa
Updated June 11, 2026
12 min read

The U.S. Federal Trade Commission finalized a $1 million order against accessiBe in April 2025 for deceptive claims that an automated overlay could make websites WCAG-compliant. For Shopify merchants who installed accessiBe as their accessibility plan, that order is a clear signal to verify the underlying source. The 2025 lawsuit data backs it up: 22.6% of all ADA website lawsuits hit sites that had overlay widgets installed (UsableNet 2025 mid-year report). This is the field guide to picking a real alternative.

What changed in April 2025

FTC Press Release, April 2025:

  • Final order: $1,000,000 monetary penalty to be paid by accessiBe.
  • Prohibition: AccessiBe is barred from "making any representation that any of its products or services can make any website fully WCAG compliant or fully ADA compliant" without competent and reliable evidence.
  • Scope: The order covers all accessiBe products including accessWidget, accessFlow, and the Shopify App Store listing.
  • Date: Final order approved April 2025, following the original FTC complaint of January 2025.

The order does not require AccessiBe to remove the product. It does not address the underlying technical question of whether overlays could meet WCAG. It addresses the marketing claim that they do. Post-order, AccessiBe's marketing copy shifted from "make any website WCAG-compliant" to "align with WCAG 2.1/2.2 Level AA standards." That hedged language is the FTC compliance position.

Inside the FTC order — case 2223156

The FTC's complaint and consent order, filed in matter 2223156 ("In the Matter of accessiBe Inc."), alleged three categories of deceptive conduct:

  1. False compliance claims. accessiBe marketed accessWidget as a product that made client websites "fully compliant" with WCAG and the ADA. The FTC found these claims false — the overlay does not modify the underlying source code that screen readers and assistive technology rely on, and could not, in fact, produce full compliance.
  2. Deceptive endorsements. The FTC alleged accessiBe paid for or otherwise procured testimonials, articles, and reviews that purported to be independent disability-advocate endorsements but were actually promotional content arranged by the company.
  3. Misrepresented affiliations. accessiBe was alleged to have falsely implied associations with disability-advocate organizations and accessibility experts who had not endorsed the product.

The final order requires:

  • $1,000,000 in monetary relief paid to the FTC.
  • A prohibition on representing that any product or service makes a website ADA- or WCAG-compliant unless the company possesses and relies upon "competent and reliable evidence" supporting that claim.
  • A prohibition on misrepresenting endorsements, testimonials, or affiliations with disability advocates.
  • Compliance reporting for ten years, including periodic submissions documenting how the company is meeting the order's terms.

Per standard consent-order practice, accessiBe entered the order for settlement purposes without admitting liability. The FTC docket preserves the complaint, order text, and analysis of public comments.

Why this is the most significant federal action on accessibility marketing

US accessibility enforcement under the ADA is largely a private-litigation regime — plaintiffs and their counsel sue, defendants settle. The Department of Justice has occasionally intervened and issued web-accessibility guidance, but the FTC had not previously taken a high-profile action against an accessibility-product vendor.

The accessiBe order is the federal government formally documenting, through an evidentiary process, that the most-marketed accessibility overlay does not deliver the compliance its marketing claimed. That documentation is now part of the public record and is citable in:

  • Future ADA Title III disputes where a defendant argues that having an overlay was meaningful remediation.
  • State-attorney-general enforcement actions under consumer-protection statutes (California Unruh Civil Rights Act, NY Human Rights Law, Florida Deceptive and Unfair Trade Practices Act).
  • Class-action complaints by merchants alleging they were harmed by the deceptive marketing.

Source-code fix vs. overlay — the real difference

The technical distinction the FTC, the courts, and the WCAG specification care about is what HTML you actually serve.

OverlaySource-code fix
Where the fix livesJavaScript bundleYour Shopify theme files
When the fix runsAfter page loadBefore page load
What screen readers seeThe original (broken) markup until JS runsThe fixed markup immediately
What automated scanners testThe original (broken) markupThe fixed markup
What plaintiff attorneys' tools detectThe overlay JS file (a target signal) + original violationsReal fixes
What merchants ownA subscriptionTheme code they keep on uninstall
Survives theme switchNoYes
Survives app uninstallNoYes

The structural reason overlay-equipped stores keep getting sued is that plaintiff scanners test the served HTML before JavaScript executes. The overlay's modifications never appear to those scanners, so the violations look identical to a store with no remediation. Plaintiff attorneys' tools also explicitly detect overlay JS files as a target signal — the presence of accessiBe or UserWay JS on a site is evidence the merchant believes they need accessibility help, which lowers the cost of the demand-letter pipeline.

A source-code fix tool changes the served HTML directly. Plaintiff scanners report the fixed markup as fixed.

The seven Shopify accessibility apps in May 2026

Pulled from the Shopify App Store on 2026-05-03. Sorted by review count.

#AppRatingReviewsMethodBFS
1Avada Accessibility Widget ADA5.0281Overlay
2Isonomy4.986Overlay + some code-level
3ADA Accessibility Widget by AP4.984Overlay
4Accessibility Assistant (ADA)4.837Overlay
5Accessibility Spark5.033Hybrid
6Accessibly4.423Overlay + AI alt
7accessiBe Web Accessibility4.114Overlay
8Patrol — ADA Code Level Fixes5.011Source-code fix
9UserWay (Level Access)2.48Overlay
10AccessComplynewnewSource-code fixnew

Two source-code fix apps: Patrol (free, mature) and AccessComply (free + paid tiers, just launched May 2026). Every other app is an overlay or overlay-hybrid — the architecture the FTC just sanctioned the marketing of.

What an AccessComply alternative scan looks like

A real source-code fix tool walks every page of your storefront with axe-core, reports each violation with WCAG criterion + severity tier, then writes the fix into the relevant theme file. For a clean Dawn-themed store, AccessComply typically auto-resolves 60-72% of axe-detectable violations end-to-end. Examples:

  • Alt text on product images — the AltTextAgent reads each image, generates context-aware descriptive text using AI, writes the alt attribute to the Liquid template, and skips images where context is too thin to produce meaningful text (those flag for merchant review instead).
  • Color contrast — the ContrastAgent measures every text-on-background pairing, computes the WCAG luminance ratio, derives a contrast-safe color in HSL space (preserving brand hue and saturation), and appends a scoped CSS rule to assets/base.css.
  • Skip-to-content link — the SkipNavAgent injects <a href="#MainContent" class="skip-to-content-link">Skip to content</a> into layout/theme.liquid along with the focus-visible CSS that reveals it on Tab.
  • ARIA labels on icon-only buttons — the AriaLabelAgent adds aria-label="Cart" (or appropriate) to <a> and <button> elements that wrap an SVG with no accessible name.

The remaining 28-40% of violations — content-author issues like generic "Read more" link text, video captions, deeply customized third-party widgets — get flagged for manual review with suggested code in the dashboard. AccessComply's "What's left for you" card shows the merchant exactly which categories need their attention.

What to look for in a real AccessiBe alternative (May 2026)

Five concrete checks, ranked by signal strength:

  1. Does it write to your theme source? Open Shopify admin → Online Store → Themes → Edit code. After running the tool, you should see edits in the actual .liquid and .css files — not just a <script> tag in theme.liquid. If you see only the <script> tag, it's an overlay.

  2. Built for Shopify badge? Shopify's own quality verification. AccessiBe doesn't have it; UserWay does; AccessComply is targeting it post-launch.

  3. Does the vendor's own marketing site pass WCAG? Run a free scan on the vendor's homepage. Most overlay vendors' marketing sites fail their own product's contrast and form-label rules. AccessComply, Patrol, and Isonomy generally pass.

  4. Read the litigation pledge fine print. Most overlay vendors' pledges have material exclusions for "websites that have been customized" — which describes every Shopify store. The pledge is rarely enforceable in practice.

  5. Backup-first workflow. A real tool that writes to your theme must backup the theme before each fix and make rollback obvious. Without that, a bad fix is your problem to clean up.

What to do this week if you have an overlay installed

  1. Run a scan that bypasses the overlay. Open your store in a private window with JavaScript disabled, or run a free AccessComply scan — it evaluates the underlying source HTML, not the overlay's runtime DOM mutations. 30 seconds, no signup.
  2. Document your current state. Save the scan output. This is the baseline for your remediation timeline.
  3. Plan source-code remediation. Eligible first-party theme issues (alt text, contrast, form labels, ARIA, keyboard, focus, target size) should ship via source-code patches to your theme. Custom widgets, video transcripts, complex interactions, PDFs, and third-party app output need manual attention.
  4. Publish an accessibility statement documenting your remediation effort, known limitations, feedback channel, and review date — see the accessibility statement template guide.
  5. Reconsider the overlay subscription. The overlay does not protect you from lawsuits, and its compliance marketing has been formally adjudicated as deceptive. The subscription cost is better spent on source-code remediation — AccessComply's plans start at the same $49/month most overlays charge, and the free tier includes 3 deterministic fixes per month.

The Practical Risk-Reduction Framing

Post-FTC v accessiBe, the merchant-safe language is: "reduces risk and produces evidence of active remediation" — not "guaranteed compliance" or "lawsuit-proof". A useful remediation record includes:

  1. A documented WCAG 2.1 + 2.2 AA scan of the storefront with severity tiers.
  2. Source-code fixes applied for the categories that can be safely automated (60-72% on a clean Dawn theme per the May 2026 product audit).
  3. A flagged manual-review queue for the content-author and third-party widget issues that automation can't safely resolve.
  4. An accessibility statement published at /pages/accessibility-statement documenting the remediation approach + a feedback channel for users who hit barriers.
  5. Quarterly re-scans capturing regressions and re-running fixes.

That's the structure AccessComply (and Patrol, and Isonomy in some configurations) implements. That's the structure overlays cannot — because they don't change the served HTML.

Further reading

Free scan available

Scan your store first, then fix issues in the theme

AccessComply finds WCAG issues by page, creates backups before paid fixes, and re-scans before marking violations resolved. No overlay widget.

Vijaygopal Balasa, Founder, AccessComply
Written by

Vijaygopal Balasa

Founder, AccessComply

Founder of AccessComply. Builds AI agents that fix Shopify accessibility violations at the source-code level — not via overlays. Focused on real WCAG 2.2 AA outcomes for merchants.

More on ADA Lawsuits

See all →