Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureAction3 landmarksFIX
Screen reader users cannot quickly navigate to the primary content. Wrap your main content in <main>.
Without a <main> landmark, screen-reader users can't skip past the navigation to the page content — every page starts with re-reading the menu.
Learn more ▾ ▴
The <main> element marks the page's primary content area. Assistive tech offers a 'jump to main' shortcut — but only if <main> exists. Without it, every page navigation forces re-reading the header. Wrap your primary content in a single <main>.
Source: WAI-ARIA / WCAG 2.4.1
Add a skip link as the first focusable element so keyboard users can bypass repeated navigation.
Without a skip-nav link, keyboard users tab through every nav item before reaching content — every page, every visit.
Learn more ▾ ▴
WCAG 2.4.1 (Bypass Blocks) requires a mechanism to skip past repeated content. The standard implementation is a 'Skip to main content' link that's the first focusable element, visually hidden until focused. Three lines of HTML + four of CSS.
Source: WCAG 2.1 SC 2.4.1
FAlt Text QualityAction5 of 44 images have issuesFIX
| Issue | Count |
|---|---|
| missing | 5 image(s) |
Images without alt text are invisible to screen readers.
Each image without alt text is a WCAG 1.1.1 failure — invisible to screen-reader users, lost from Google Image Search.
Learn more ▾ ▴
WCAG 2.1 Level A requires text alternatives for non-decorative images. Empty alt='' is fine for decorative; meaningful images need descriptive text. Common fixes: CMS audit + bulk add, build-time linter (alt-text-required ESLint rule), CI gate on Lighthouse a11y score.
Source: WCAG 2.1 SC 1.1.1 / WebAIM Million Report
An image inside a link with no alt creates an empty link.
Image-only links with no alt create empty links — screen-reader users hear 'link' with no destination context.
Learn more ▾ ▴
An <a><img></a> with no img alt is the worst-case for accessibility: AT announces the link but can't describe where it goes. Either add alt to the image OR add aria-label to the link.
Source: WCAG 2.1 SC 2.4.4
DWeb ManifestActionNot foundFIX
No web manifest found.
DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
CLink & Button QualityAction6 issue(s) across 95 links and 2 buttonsREVIEW
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://wpconsent.com/cdn-cgi/content?id… | (empty) | empty | Add link text or aria-label |
| https://wpconsent.com/ | WPConsent | img no alt | Add alt attribute to the image |
| https://wpconsent.com/ | WPConsent | img no alt | Add alt attribute to the image |
| / | (empty) | empty | Add link text or aria-label |
| https://awesomemotive.com/careers/ | Careers | new tab | Add '(opens in new tab)' to text |
| https://twitter.com/wpconsent | (empty) | empty | Add link text or aria-label |
| https://www.facebook.com/groups/wpbeginn… | (empty) | empty | Add link text or aria-label |
| https://www.wpbeginner.com/wordpress-hos… | WordPress Hosting | new tab | Add '(opens in new tab)' to text |
| https://twitter.com/wpconsent | (empty) | empty | Add link text or aria-label |
| https://www.facebook.com/groups/wpbeginn… | (empty) | empty | Add link text or aria-label |
| https://www.wpbeginner.com/ | WPBeginner Verified Badge | new tab | Add '(opens in new tab)' to text |
Links without text are announced as raw URLs by screen readers.
https://wpconsent.com/cdn-cgi/content?id=KebKxRRhBcc1.Qh57S9Puj8uFpOP0HdPE_1u…; /; https://twitter.com/wpconsent; https://www.facebook.com/groups/wpbeginner/; https://twitter.com/wpconsent; https://www.facebook.com/groups/wpbeginner/
Links with no accessible text (empty <a></a>, image-only no alt, icon-only no aria-label) are unidentifiable to screen readers.
Source: WCAG 2.1 SC 2.4.4
Add '(opens in new tab)' to link text or aria-label.
https://awesomemotive.com/careers/; https://www.wpbeginner.com/wordpress-hosting/; https://www.wpbeginner.com/
Links with target="_blank" without rel="noopener" leak the originating page's window context — security and UX issue.
Learn more ▾ ▴
Without rel="noopener", the new tab can navigate the original tab via window.opener (tab-nabbing attack). Modern browsers default to noopener for target=_blank but only since recent versions. Always set rel="noopener noreferrer" explicitly.
Source: MDN target / OWASP
B404 Error PageHTTP 404, custom pageREVIEW
BFavicon & Branding4 icon(s) detectedREVIEW
BLighthouse Accessibility AuditsScore 83/100 — 5 failing, 21 passedREVIEW
Accessibility
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
Contrast
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Get WPConsent Now div#sp-button-parent-cii6rt > a#sp-cii6rt > span > strong |
Get WPConsent Now div#sp-wkvfwq > div#sp-button-parent-qc5gjz > a#sp-qc5gjz > span |
See all Features div#sp-button-parent-x99byd > a#sp-x99byd > span > strong |
Get WPConsent Now div#sp-az9cif > div#sp-button-parent-m31tw2 > a#sp-m31tw2 > span |
Get WPConsent Now div.footer-cta-content-1 > div.footer-cta-column > a.wpconsent-buton-cta > span |
Low-contrast text is difficult or impossible for many users to read. Link text that is discernible improves the experience for users with low vision. Learn how to make links distinguishable.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
contact us div#sp-zu6kzg > div#sp-r5baq4 > p > a |
These are opportunities to improve the legibility of your content.
Navigation
Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. Learn more about heading order.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
7 Best Cookiebot Alternatives for WordPress (2026 Compared) div.sp-post-text-container > a > div.sp-container > h4.sp-pt-0 |
These are opportunities to improve keyboard navigation in your application.
Names and labels
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.duplicator-site-branding > a > span.duplicator-header-logo > img div.duplicator-site-branding > a > span.duplicator-header-logo > img |
div.duplicator-mobile-menu > div.duplicator-mobile-menu-top > button#duplicator-menu-open > img div.duplicator-mobile-menu > div.duplicator-mobile-menu-top > button#duplicator-menu-open > img |
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div#footer-links > div#footer-social-wrapper > div#footer-social-mobile > a div#footer-links > div#footer-social-wrapper > div#footer-social-mobile > a |
div#footer-links > div#footer-social-wrapper > div#footer-social-mobile > a div#footer-links > div#footer-social-wrapper > div#footer-social-mobile > a |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
AHeading Hierarchy32 headings, 1 skip(s)PASS
- H1 WordPress Privacy Compliance Made Easy
- H2 Finally, a WordPress Cookie Consent Plugin that’s both Easy and Powerful
- H3 Customizable Cookie Banner
- H3 Granular Cookie Control
- H3 Records of User Consent
- H3 Automatic Script Blocking
- H3 Advanced Website Scanning
- H3 Fully Self-Hosted
- H3 Smart Geolocation Detection
- H3 Powerful Integrations
- H3 Automatic Scanning
- H2 What our users say about us
- H2 Top 7 Reasons Why Businesses Love ♥ WPConsent
- H3 Create Smart Cookie Consent Banners in Minutes, Not Hours
- H3 Automatic Script Blocking for Better Privacy Compliance
- H3 Comprehensive User Consent Record Logs and Management in One Place
- H3 Smart Geolocation Detection for an Optimized User Experience
- H3 Advanced WordPress Privacy Features That Adapt to Your Needs
- H3 Fully Self-Hosted Like It Should Be for Privacy Conscious Businesses
- H3 World-Class Customer Support From an Expert Team
- H3 Make Your WordPress Site Privacy Compliant
- H2 Frequently Asked Questions
- H2 Need Help Improving Your WordPress Website?
- H4 7 Best Cookiebot Alternatives for WordPress (2026 Compared) skipped
- H4 CookieYes vs. WPConsent: Which is Best for WordPress in 2026? (Compared)
- H4 Introducing WPConsent 1.1.4 – Auto Scan Alerts, Scan History, Geo-Targeted Content Blocking & More
- H3 Get the #1 Most Powerful WordPress Consent Management Plugin Today
- H3 Company
- H3 Key Features
- H3 Integrations
- H3 Helpful Links
- H3 Connect with us
Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.
Skipping heading levels breaks the document outline — screen-reader users lose track of section nesting.
Learn more ▾ ▴
Screen reader users navigate by jumping between headings (H1 → H2 → H3). Skipping (H1 → H3) breaks the sense of hierarchy. Use sequential levels even if you don't like the default styling — restyle with CSS instead. WCAG 1.3.1 (Info and Relationships) treats this as an A failure.
Source: WCAG 2.1 SC 1.3.1 / W3C WAI
A+Form AccessibilityAll 1 controls labeledPASS
| Control | Type | Label | Method |
|---|---|---|---|
| #wg69e954c2802dd9.101942401776899266755 | checkbox | English | for/id |
A+Color Contrast (Screenshot)20 text elements analyzed, 0 fail WCAG AAPASS
Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.
Show all checked elements (20)
| Element | Ratio | Required | FG | BG | Result |
|---|---|---|---|---|---|
| h1 WordPress Privacy Co… | 8.37:1 | 3.0:1 | #000000 | #AE9DBF | Pass |
| h2 Finally, a WordPress… | 8.37:1 | 3.0:1 | #000000 | #AE9DBF | Pass |
| h2 What our users say a… | 8.37:1 | 3.0:1 | #000000 | #AE9DBF | Pass |
| h2 Top 7 Reasons Why Bu… | 8.37:1 | 3.0:1 | #000000 | #AE9DBF | Pass |
| h2 Love | 8.37:1 | 3.0:1 | #000000 | #AE9DBF | Pass |
| h2 WPConsent | 8.37:1 | 3.0:1 | #000000 | #AE9DBF | Pass |
| h2 Frequently Asked Que… | 8.37:1 | 3.0:1 | #000000 | #AE9DBF | Pass |
| h2 Need Help Improving … | 8.37:1 | 3.0:1 | #000000 | #AE9DBF | Pass |
| h3 Customizable Cookie … | 8.37:1 | 3.0:1 | #000000 | #AE9DBF | Pass |
| h3 Granular Cookie Cont… | 8.37:1 | 3.0:1 | #000000 | #AE9DBF | Pass |
| h3 Records of User Cons… | 8.37:1 | 3.0:1 | #000000 | #AE9DBF | Pass |
| h3 Automatic Script Blo… | 8.37:1 | 3.0:1 | #000000 | #AE9DBF | Pass |
| h3 Advanced Website Sca… | 8.37:1 | 3.0:1 | #000000 | #AE9DBF | Pass |
| h3 Fully Self-Hosted | 8.37:1 | 3.0:1 | #000000 | #AE9DBF | Pass |
| h3 Smart Geolocation De… | 8.37:1 | 3.0:1 | #000000 | #AE9DBF | Pass |
| h3 Powerful Integration… | 8.37:1 | 3.0:1 | #000000 | #AE9DBF | Pass |
| h3 Automatic Scanning | 8.37:1 | 3.0:1 | #000000 | #AE9DBF | Pass |
| h3 Create Smart Cookie … | 8.37:1 | 3.0:1 | #000000 | #AE9DBF | Pass |
| h3 Automatic Script Blo… | 8.37:1 | 3.0:1 | #000000 | #AE9DBF | Pass |
| h3 Comprehensive User C… | 8.37:1 | 3.0:1 | #000000 | #AE9DBF | Pass |
Methodology: The top 20 text elements by font size were checked. Background color was sampled from the desktop screenshot using a 5-point pattern. WCAG 2.1 AA requires 4.5:1 for normal text and 3:1 for large text.