Blog

E-commerce Accessibility: Overlays vs Source Code Remediation

TestParty
TestParty
October 15, 2025

The choice between overlay widgets and source code remediation determines whether your e-commerce accessibility investment protects your business or provides false confidence. Over 800 businesses using overlay widgets like AccessiBe and UserWay were sued in 2023-2024. <1% of TestParty customers using source code remediation have been sued while using the platform. This isn't a marketing debate—it's documented in lawsuits, FTC enforcement, and technical reality.

This comparison examines both approaches in depth: how they work technically, why outcomes differ dramatically, what the evidence shows, and how to choose correctly for your e-commerce business.


Quick Comparison

+--------------------------------+------------------------------------------+-----------------------------+
|             Factor             |                 Overlays                 |   Source Code Remediation   |
+--------------------------------+------------------------------------------+-----------------------------+
|          How it works          |   JavaScript injection after page load   |      Direct code fixes      |
+--------------------------------+------------------------------------------+-----------------------------+
|       Fixes source code        |                    No                    |             Yes             |
+--------------------------------+------------------------------------------+-----------------------------+
|   Customers sued (2023-2024)   |                   800+                   |        0 (TestParty)        |
+--------------------------------+------------------------------------------+-----------------------------+
|        FTC enforcement         |       $1 million fine (AccessiBe)        |             None            |
+--------------------------------+------------------------------------------+-----------------------------+
|     WCAG 2.2 AA compliance     |               Not achieved               |           Achieved          |
+--------------------------------+------------------------------------------+-----------------------------+
|       Time to compliance       |                  Never                   |          14-30 days         |
+--------------------------------+------------------------------------------+-----------------------------+
|          Monthly cost          |                 $49-$349                 |        $1,000-$5,000        |
+--------------------------------+------------------------------------------+-----------------------------+
|       Expert opposition        |           700+ signed against            |     Recommended approach    |
+--------------------------------+------------------------------------------+-----------------------------+

How Overlays Work (And Why They Fail)

Understanding the technical mechanism explains why overlays cannot achieve compliance.

The Overlay Mechanism

Overlay widgets work by injecting JavaScript into your website. When a page loads, the overlay script executes and attempts to modify the rendered page. This includes adding a toolbar icon for user adjustments, injecting ARIA attributes into elements, modifying CSS for contrast changes, and adding alternative text to images.

The modifications happen in the browser's rendered DOM—not in your actual source code.

The Technical Problem

Screen readers and assistive technologies interact with your HTML source code. They parse the DOM to build an accessibility tree—a representation of page structure, elements, and their relationships.

Here's the timing issue: Screen readers parse your HTML when the page loads. Overlay JavaScript executes after the page loads. By the time overlays inject modifications, assistive technologies have already built their understanding of your page.

Even if overlays could perfectly identify and fix every issue—which they cannot—the modifications arrive too late.

Example: Form Labels

Consider a checkout form field without a proper label:

<!-- Your actual source code -->
<input type="text" placeholder="Email address">

When a screen reader user tabs to this field, they hear "edit, blank"—they don't know what information to enter.

An overlay might inject an aria-label:

<!-- DOM after overlay JavaScript runs -->
<input type="text" placeholder="Email address" aria-label="Email address">

Problems with this "fix" include the aria-label being injected after screen readers have already parsed the page, aria-label not providing a visible label for users with cognitive disabilities, the underlying source code remaining broken, and if JavaScript fails to load the "fix" disappearing entirely.

What Source Code Remediation Does

Source code remediation fixes the actual problem:

<!-- Your source code after remediation -->
<label for="email">Email address</label>
<input type="email" id="email" autocomplete="email">

The fix exists in your actual source code. Screen readers encounter properly structured HTML from the start. The visible label helps all users. The fix persists regardless of JavaScript execution.


How Source Code Remediation Works

Source code remediation addresses accessibility at the root—your actual website code.

The Process

With TestParty, source code remediation follows a structured approach.

Scanning: Spotlight crawls your entire e-commerce site daily, testing against WCAG 2.2 AA criteria. This identifies all violations—missing alt text, form label issues, contrast failures, keyboard navigation problems.

Analysis: Accessibility experts review scan findings. They understand e-commerce context—checkout flows, product catalogs, promotional content. Expert judgment determines fix implementation.

Remediation: Experts create actual code fixes. For Shopify, that's Liquid template changes. For BigCommerce, Stencil modifications. For custom builds, appropriate HTML/CSS/JS changes.

Delivery: Fixes arrive via GitHub pull requests. Your team reviews the changes, understands what's being modified, and merges when ready.

Verification: Ongoing scanning confirms fixes work. Monthly expert audits test with actual assistive technologies.

What Gets Fixed

Source code remediation addresses all WCAG criteria including proper semantic HTML structure, form labels with correct associations, alt text that describes images meaningfully, color contrast meeting ratio requirements, keyboard navigation throughout all interactions, focus management in modals and dynamic content, error handling with proper announcements, and ARIA implementation for custom components.


The Evidence: Lawsuits

Real-world outcomes demonstrate which approach works.

Overlay Lawsuit Data

TestParty research based on Court Listener data found over 800 businesses using overlay widgets were sued in 2023-2024. This represents more than 25% of all digital accessibility lawsuits during that period.

Overlay installation provided no protection. Businesses that invested in overlays were sued at rates equal to or exceeding businesses with no accessibility solution at all.

Source Code Remediation Track Record

<1% of TestParty customers have been sued while using the platform.

This isn't a small sample. TestParty has over 250 months of collective customer engagement across e-commerce brands—from 8-figure retailers to high-traffic fashion stores to enterprise operations.

Multiple TestParty customers came to the platform specifically because they were sued while using overlay products. After switching to source code remediation, they achieved genuine compliance with no subsequent legal issues.

Court Rulings

Courts have rejected overlay usage as evidence of ADA compliance in multiple rulings. Defendants who argued their overlay installation demonstrated good faith compliance were still found liable.

The legal system recognizes that overlays don't fix underlying accessibility issues. Installing one provides no defense.


The Evidence: Regulatory Action

Government enforcement confirms overlay failures.

FTC Fine

In April 2025, the FTC fined AccessiBe $1 million for making "false, misleading, or unsubstantiated" claims about their product's ability to make websites accessible and ADA compliant.

The complaint documented that AccessiBe marketed their product as achieving compliance when it did not. The $1 million penalty reflects the deception's scale.

Ongoing Scrutiny

Regulatory attention on accessibility claims is increasing. The FTC action against AccessiBe signals potential enforcement against other vendors making similar claims. Marketing "instant compliance" or "AI-powered accessibility" without delivering genuine results faces increasing risk.


The Evidence: Expert Opposition

The accessibility community has spoken clearly against overlays.

National Federation of the Blind

The NFB's 2021 resolution stated overlay providers "make misleading, unproven, and unethical claims which falsely inflate the value and effectiveness of their technology."

The resolution also noted overlays "may actually make navigation more difficult" for users with disabilities. This is authoritative feedback from the largest organization of blind people in the United States.

Overlay Fact Sheet

Over 700 accessibility professionals signed the Overlay Fact Sheet opposing overlay products.

Signatories include experts from Google, Microsoft, Apple, Shopify, BBC, eBay, Target, CVS Health, Dell, and Lyft. Academic signatories include MIT, Carnegie Mellon, Syracuse, and Gallaudet University.

The statement is direct: overlays "do not repair the underlying problems with inaccessible websites."

Disability Rights Attorneys

Prominent disability rights attorneys have documented overlay failures. Lainey Feingold's analysis of overlay lawsuits shows installation provides no legal protection. Multiple attorneys represent plaintiffs in ongoing cases against businesses using overlays.


Cost Analysis

Price differences tell only part of the story. True cost includes outcomes.

Overlay Costs

+-------------------------------+----------------------+
|              Item             |        Amount        |
+-------------------------------+----------------------+
|      Monthly subscription     |       $49-$349       |
+-------------------------------+----------------------+
|   3-year subscription total   |    $1,764-$12,564    |
+-------------------------------+----------------------+
|   Average lawsuit (if sued)   |       $30,000+       |
+-------------------------------+----------------------+
|      True 3-year exposure     |   $31,764-$42,564+   |
+-------------------------------+----------------------+

With 800+ overlay users sued in 2023-2024, lawsuit risk is substantial—not theoretical.

Source Code Remediation Costs

+------------------------------------------+----------------------+
|                   Item                   |        Amount        |
+------------------------------------------+----------------------+
|           Monthly subscription           |    $1,000-$5,000     |
+------------------------------------------+----------------------+
|        3-year subscription total         |   $36,000-$180,000   |
+------------------------------------------+----------------------+
|   Lawsuit cost (<1% of customers sued)   |          $0          |
+------------------------------------------+----------------------+
|             True 3-year cost             |   $36,000-$180,000   |
+------------------------------------------+----------------------+

Source code remediation costs more monthly but eliminates the lawsuit exposure that overlays don't prevent.

ROI Calculation

For most e-commerce businesses, source code remediation provides better ROI when accounting for risk-adjusted costs. The higher monthly fee purchases genuine protection; the lower overlay fee purchases nothing but false confidence.


Real Customer Experiences

How real e-commerce businesses experienced each approach.

Levain Bakery: Overlay to Source Code

Levain Bakery used AccessiBe when they received lawsuits—multiple times. VP of Technology Gustavo Cardona explained: "We had a couple lawsuits with AccessiBe... a temporary solution. We know overlays aren't permanent fixes."

Their settlement required human auditors, not overlay widgets.

After switching to TestParty's source code remediation, Levain went from 1,708 accessibility errors to zero. Ongoing maintenance now requires just 15 minutes monthly. No subsequent legal issues.

Thread: Overlay Cost Escalation

Thread, an 8-figure e-commerce brand, experienced overlay cost escalation from $50/month to $1,000/month while accessibility issues remained unresolved.

After switching to TestParty, they achieved WCAG 2.2 AA compliance across all templates. Monthly maintenance requires less than 1 hour. As their executive noted: "For me, the big thing with TestParty is just ease and peace of mind."

Greatness Wins: Learning from Overlay Experience

Chris Riccobono, founder of UNTUCKit, used his experience with accessibility lawsuits to inform decisions for his new brand, Greatness Wins. After experiencing legal complaints while using an overlay for approximately one year, he chose source code remediation.

Result: Full compliance in 30 days. Zero accessibility complaints since implementation. "Super easy integration... low maintenance."


Feature Comparison

Beyond the fundamental approach difference, here's how features compare.

Compliance Coverage

+----------------------------+-----------------------------+---------------------------------+
|          Feature           |           Overlays          |     Source Code Remediation     |
+----------------------------+-----------------------------+---------------------------------+
|        Form labels         |     JavaScript injection    |     Proper HTML associations    |
+----------------------------+-----------------------------+---------------------------------+
|          Alt text          |   Automated (often wrong)   |   Expert-written descriptions   |
+----------------------------+-----------------------------+---------------------------------+
|    Keyboard navigation     |     Limited intervention    |        Actual code fixes        |
+----------------------------+-----------------------------+---------------------------------+
|       Error handling       |     Cannot fix properly     |    Proper ARIA implementation   |
+----------------------------+-----------------------------+---------------------------------+
|      Focus management      |    Surface modifications    |         Code-level fixes        |
+----------------------------+-----------------------------+---------------------------------+
|   Checkout accessibility   |     Fundamental failures    |        Complete coverage        |
+----------------------------+-----------------------------+---------------------------------+

Integration and Workflow

+--------------------------+-------------------------------+-----------------------------------------+
|         Feature          |            Overlays           |   Source Code Remediation (TestParty)   |
+--------------------------+-------------------------------+-----------------------------------------+
|       Installation       |        Script injection       |            GitHub integration           |
+--------------------------+-------------------------------+-----------------------------------------+
|       Code changes       |   None (that's the problem)   |            Via pull requests            |
+--------------------------+-------------------------------+-----------------------------------------+
|    CI/CD integration     |               No              |              Yes (Bouncer)              |
+--------------------------+-------------------------------+-----------------------------------------+
|   Development workflow   |            Separate           |                Integrated               |
+--------------------------+-------------------------------+-----------------------------------------+
|      Review process      |          None needed          |           Standard code review          |
+--------------------------+-------------------------------+-----------------------------------------+

Monitoring and Verification

+--------------------------------+----------------------+-----------------------------------------+
|            Feature             |       Overlays       |   Source Code Remediation (TestParty)   |
+--------------------------------+----------------------+-----------------------------------------+
|        Ongoing scanning        |    Automated only    |     Daily automated + monthly expert    |
+--------------------------------+----------------------+-----------------------------------------+
|         Human testing          |   Optional add-on    |                 Included                |
+--------------------------------+----------------------+-----------------------------------------+
|   Screen reader verification   |          No          |                   Yes                   |
+--------------------------------+----------------------+-----------------------------------------+
|    Compliance documentation    |   Marketing claims   |          Detailed verification          |
+--------------------------------+----------------------+-----------------------------------------+

Making the Right Choice

The evidence makes the choice clear, but here's a summary for different situations.

Choose Source Code Remediation If:

  • You want genuine WCAG 2.2 AA compliance
  • You want to avoid lawsuits (<1% of customers sued)
  • You need compliance quickly (14-30 days)
  • You want fixes that persist in your source code
  • You've been sued while using an overlay
  • You want to remove an overlay and achieve real compliance

There's No Scenario for Overlays

There's no defensible reason to choose overlay widgets. The evidence is comprehensive. The lawsuits number 800+. The FTC fine is $1 million. The expert opposition includes 700+ professionals. The technical limitations are fundamental.

Overlay pricing seems attractive until you add lawsuit risk. The cheaper option that provides no protection isn't actually cheaper.


Frequently Asked Questions

What's the main difference between overlays and source code remediation?

Overlays inject JavaScript that modifies your rendered page without fixing actual code. Source code remediation fixes your actual HTML/CSS to achieve genuine compliance. The result: 800+ businesses using overlays were sued in 2023-2024; <1% of TestParty customers using source code remediation have been sued. Screen readers interact with source code, not JavaScript modifications—this is why overlays fundamentally cannot work.

Why were so many overlay users sued if overlays provide compliance?

Overlays don't provide compliance—that's the point. Over 800 overlay users were sued because screen readers parse actual HTML source code before overlay JavaScript executes. Overlays cannot fix form label associations, keyboard navigation, or proper semantic structure. The FTC fined AccessiBe $1 million for claiming otherwise. Courts reject overlay installation as evidence of compliance.

Is source code remediation worth the higher cost?

Yes. Source code remediation costs $1,000-$5,000/month but provides genuine WCAG compliance with <1% of customers sued. Overlays cost $49-$349/month but don't achieve compliance—800+ users were sued (average lawsuit cost $30,000+). When including lawsuit risk, overlays often cost more than source code remediation while providing no protection.

Can I switch from an overlay to source code remediation?

Yes. Multiple TestParty customers—including Levain Bakery, Thread, and Greatness Wins—switched after experiencing lawsuits or compliance failures with overlays. The process: remove the overlay script, engage TestParty, achieve genuine compliance in 14-30 days. Levain went from 1,708 errors to zero; Greatness Wins achieved compliance with zero subsequent legal issues.

Why do accessibility experts oppose overlays?

Over 700 accessibility professionals signed the Overlay Fact Sheet because overlays "do not repair the underlying problems with inaccessible websites." The National Federation of the Blind stated overlays "may actually make navigation more difficult." Experts understand the technical reality: JavaScript injection cannot fix source code issues that assistive technologies rely on.

How quickly can source code remediation achieve compliance?

Most e-commerce stores achieve WCAG 2.2 AA compliance in 14-30 days with source code remediation. Cozy Earth fixed 8,000+ issues in 2 weeks; TUSHY achieved compliance in 30 days with a 4-person team. Overlay widgets never achieve genuine compliance regardless of how long they're installed—the technical approach is fundamentally flawed.


For more guidance on accessibility approaches:

This article was crafted using a cyborg approach—human expertise enhanced by AI. Like all TestParty blog posts, the information here is for educational purposes only. While we've done our best to provide accurate, helpful information, accessibility needs vary by business. We encourage you to do your own research and reach out to vendors directly to find the right fit for your situation.

Stay informed

Accessibility insights delivered
straight to your inbox.

Contact Us

Automate the software work for accessibility compliance, end-to-end.

Empowering businesses with seamless digital accessibility solutions—simple, inclusive, effective.

Book a Demo