Mobile 375 × 812

Desktop 1440 × 900

Score: 77 / 100
Based on 8 categories, 0 sections
Decent speed, but optimizing further could improve engagement.
Several missing protections leave your users and data exposed.
Several issues make your site difficult for assistive technology users.
Well-optimized for search — your content is discoverable.
Solid infrastructure — fast server responses across the board.
Strong compliance posture across regulations.
Rich content metadata — your pages look great everywhere.
Reasonable footprint with room for optimization.
The overall score is a weighted average of individual category scores. Categories with more impact on user experience and security carry more weight.
Weights reflect general web best practices. Individual needs may differ.
Content-Security-Policy header is missing
Security gaps expose your site and users to attacks, eroding trust.
HSTS header is missing
Security gaps expose your site and users to attacks, eroding trust.
No Content-Security-Policy header found
Security gaps expose your site and users to attacks, eroding trust.
Page weighs 7.5 MB (3.9 MB transferred)
Performance issues directly impact user engagement and conversion rates.
3 image-in-link without alt text
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
High impact, low effort — start here.
High impact, requires investment.
Small gains, minimal effort.
Nothing in this quadrant — good news.
Low impact, high effort — do last.
Nothing in this quadrant — good news.
[](https://beavercheck.com/results/6293277e-dacc-4507-8517-a954153f7081)<a href="https://beavercheck.com/results/6293277e-dacc-4507-8517-a954153f7081"><img src="https://beavercheck.com/badge?url=https%3A%2F%2Fwpconsent.com" alt="BeaverCheck Score"></a>https://beavercheck.com/badge?url=https%3A%2F%2Fwpconsent.comThis badge auto-updates with your latest scan result.
Your site performs reasonably well, but a few targeted fixes could meaningfully improve results. Your LCP of 17.9s exceeds Google's 2.5s 'Good' threshold and the 1 performance issue below directly contributes to it. Accessibility issues exclude users who rely on assistive technology — an estimated 15% of your potential audience. Addressing the critical issues below would have the most immediate impact on your user trust.
7 barrier(s) likely increasing bounce by ~27%.
Page takes 17.9s to load
+12% bounceUsers abandon at ~3s — you're 15.4s over the 2.5s threshold
Fix: Optimize render-blocking resources, preload the hero image, and compress images
High main-thread blocking time
+2% bouncePage is non-interactive for 274ms after first paint
Fix: Defer third-party scripts and split large bundles
No HSTS header
+1% bounceReturning visitors are briefly exposed to downgrade attacks on first request
Fix: Set Strict-Transport-Security: max-age=31536000; includeSubDomains
No Content-Security-Policy header
+1% bounceHigher XSS blast radius — one compromised script can exfiltrate the checkout form
Fix: Ship a reporting-only CSP first, then enforce once violations are clean
6 link(s) with generic text ("click here", "read more")
+1% bounceScreen-reader users navigating by link list see no context — and search engines can't infer relevance
Fix: Rewrite with descriptive phrases that identify the destination
No skip-to-content link
+1% bounceKeyboard and screen-reader users must tab through the entire header on every page
Fix: Add a visible-on-focus <a href="#main">Skip to content</a> as the first focusable element
4 broken link(s) on the page
+5% bounceClicks land on 404s — trust drops and the session often ends
Fix: Fix or remove the broken destinations surfaced on the Content tab
Preliminary CRO audit — each barrier links to the tab with detailed analysis.
$500 investment → $0.99/month returns + USD 157,500 risk avoided
$500
5h · 5 findings
$0.99 /mo
~$12 / year
USD 157,500
if kept compliant
$150 — in quick wins — start here for the fastest payback
Figures combine localized regulatory fine ceilings, search/conversion value priced against local CPC, and bandwidth waste estimates. Results depend on implementation quality and audience composition. Not legal or financial advice.
5.0 developer hours at $100/hr
Based on United States rates ($100/hr)
Start here for the best return on investment
$13,126 / month at risk
~$157,512 / year if left unfixed
$157,500
+6 more
$0.99 /mo
12359.4 MB/mo × 0.080 USD/GB
Compliance figures represent the statutory maximum fine for the most severe triggered category, capped per regulation — not the sum of per-finding penalties. Based on published regulatory fine ranges. This is not legal advice.
Unique monthly visitors from your analytics
Purchases, signups, or key actions
Optional — for revenue estimation
more engaged visitors from reduced bounce
Fix 5 critical issues to capture this value
Based on Google/Deloitte research ("Milliseconds Make Millions") showing a ~7% bounce rate increase per additional second of LCP above the 2.5s "Good" threshold.
Your site's LCP: → estimated after fixes.
These are estimates based on industry research — actual results vary
Your data stays in your browser — nothing is sent to our servers
Thanks for your feedback!
We'll use a cached audit if available, or offer to scan.
Industry-standard audits powered by Google Lighthouse.
Key metrics that affect user experience.
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
6.06 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
17.89 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
274 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.000
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
6.06 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
18.74 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
COOKIE CONSENT MANAGEMENT PLUGIN FOR WORDPRESS
WordPress Privacy Compliance Ma… body.home > section#sp-bf2x0i | wpconsent.com/wp-content/uploads/2024/11/theme-builder-WQmhflAqSO9Txv8K-2.jpg | 333.8 KiB | 79.2 KiB |
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
The maximum potential First Input Delay that your users could experience is the duration of the longest task. Learn more about the Maximum Potential First Input Delay metric.
Performance issues directly impact user engagement and conversion rates.
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /wp-content/plugins/seedprod-coming-soon-pro-5/public/fon... | 21.1 KiB | 20.9 KiB |
| wpconsent.com/wp-includes/css/dist/block-editor/style.min.css?ver=6.9.4 | 14.6 KiB | 14.6 KiB |
| wpconsent.com/wp-includes/css/dist/block-library/style.min.css?ver=6.9.4 | 14.2 KiB | 14.1 KiB |
| wpconsent.com/wp-includes/css/dist/components/style.min.css?ver=6.9.4 | 12.8 KiB | 12.8 KiB |
| /wp-content/plugins/seedprod-coming-soon-pro-5/public/css... | 13.2 KiB | 12.3 KiB |
| wpconsent.com/wp-content/plugins/wpconsent-mods/style.css?ver=1.1.2 | 12.2 KiB | 10.9 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| js.stripe.com/v3/?ver=v3 | 148.8 KiB | 108.2 KiB |
| www.googletagmanager.com/gtag/js?id=G-XMSZTEHCLS | 90.0 KiB | 38.5 KiB |
| /wp-content/plugins/seedprod-coming-soon-pro-5/public/js/... | 31.6 KiB | 29.9 KiB |
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.
Performance issues directly impact user engagement and conversion rates.
| URL | Total CPU Time | Script Evaluation | Script Parse |
|---|---|---|---|
| Unattributable | 1.6 s | 124 ms | 0.0 ms |
| www.googletagmanager.com/gtag/js?id=G-XMSZTEHCLS | 419 ms | 335 ms | 79 ms |
| js.stripe.com/v3/?ver=v3 | 417 ms | 257 ms | 156 ms |
| wpconsent.com/ | 412 ms | 58 ms | 41 ms |
| wpconsent.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1 | 386 ms | 222 ms | 30 ms |
| wpconsent.com/wp-content/plugins/weglot/dist/front-js.js?ver=5.4 | 326 ms | 8.8 ms | 0.9 ms |
| a.omappapi.com/app/js/api.min.js | 121 ms | 94 ms | 20 ms |
| /wp-content/plugins/seedprod-coming-soon-pro-5/public/js/... | 78 ms | 57 ms | 21 ms |
| /beacon.min.js/v8c78df7c7c0f484497ecbca7046644da177152312... | 65 ms | 49 ms | 4.6 ms |
| a.omappapi.com/app/js/9.a3de2dc4.min.js | 65 ms | 59 ms | 4.6 ms |
Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread work
Performance issues directly impact user engagement and conversion rates.
| Category | Time Spent |
|---|---|
| Other | 1.7 s |
| Script Evaluation | 1.6 s |
| Style & Layout | 522 ms |
| Script Parsing & Compilation | 452 ms |
| Parse HTML & CSS | 292 ms |
| Rendering | 77 ms |
| Garbage Collection | 17 ms |
Minifying CSS files can reduce network payload sizes. Learn how to minify CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| wpconsent.com/wp-content/plugins/wpconsent-mods/style.css?ver=1.1.2 | 12.5 KiB | 2.0 KiB |
Minifying JavaScript files can reduce payload sizes and script parse time. Learn how to minify JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /wp-content/plugins/seedprod-coming-soon-pro-5/public/js/... | 20.1 KiB | 9.1 KiB |
| /wp-content/plugins/seedprod-coming-soon-pro-5/public/js/... | 14.9 KiB | 6.7 KiB |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
figure#sp-jpxhvf > div > span > img.sp-image-block-jpxhvf figure#sp-jpxhvf > div > span > img.sp-image-block-jpxhvf | wpconsent.com/wp-content/uploads/2024/11/theme-builder-js78d6Rh0BIKWery-2.svg |
figure#sp-agjdjrv1kgp > div > span > img.sp-image-block-agjdjrv1kgp figure#sp-agjdjrv1kgp > div > span > img.sp-image-block-agjdjrv1kgp | wpconsent.com/wp-content/uploads/2024/11/theme-builder-HsYwGth4zxNSi2eI-2.svg |
div.duplicator-site-branding > a > span.duplicator-header-logo > img div.duplicator-site-branding > a > span.duplicator-header-logo > img | wpconsent.com/wp-content/themes/wpconsent-edd/images/wpconsent-logo.svg |
figure#sp-d114ifupr8lr > div > span > img.sp-image-block-d114ifupr8lr figure#sp-d114ifupr8lr > div > span > img.sp-image-block-d114ifupr8lr | wpconsent.com/wp-content/uploads/2024/11/theme-builder-2M19RQo8B0Vz45ha-2.svg |
figure#sp-j9xganb9amhl > div > span > img.sp-image-block-j9xganb9amhl figure#sp-j9xganb9amhl > div > span > img.sp-image-block-j9xganb9amhl | wpconsent.com/wp-content/uploads/2024/11/theme-builder-3x8eu6sGSmTWAHBU-2.svg |
figure#sp-rhtzruxhv02e > div > span > img#sp-yzze24offu figure#sp-rhtzruxhv02e > div > span > img#sp-yzze24offu | wpconsent.com/wp-content/uploads/2024/11/theme-builder-3x8eu6sGSmTWAHBU-2.svg |
figure#sp-vv206cpop6zs > div > span > img#sp-z2yibiatva figure#sp-vv206cpop6zs > div > span > img#sp-z2yibiatva | wpconsent.com/wp-content/uploads/2024/11/theme-builder-3x8eu6sGSmTWAHBU-2.svg |
figure#sp-kcr98gyod7e > div > span > img#sp-adblnu2vjs figure#sp-kcr98gyod7e > div > span > img#sp-adblnu2vjs | wpconsent.com/wp-content/uploads/2024/11/theme-builder-3x8eu6sGSmTWAHBU-2.svg |
figure#sp-alvroup4z2nh > div > span > img#sp-5q1tsby59l figure#sp-alvroup4z2nh > div > span > img#sp-5q1tsby59l | wpconsent.com/wp-content/uploads/2024/11/theme-builder-3x8eu6sGSmTWAHBU-2.svg |
figure#sp-at2srd6ivfp > div > span > img#sp-y3teuik8cd figure#sp-at2srd6ivfp > div > span > img#sp-y3teuik8cd | wpconsent.com/wp-content/uploads/2024/11/theme-builder-3x8eu6sGSmTWAHBU-2.svg |
figure#sp-sojz1gqghdq > div > span > img#sp-stz7iqcxnx figure#sp-sojz1gqghdq > div > span > img#sp-stz7iqcxnx | wpconsent.com/wp-content/uploads/2024/11/theme-builder-3x8eu6sGSmTWAHBU-2.svg |
figure#sp-sp0n17 > div > span > img.sp-image-block-sp0n17 figure#sp-sp0n17 > div > span > img.sp-image-block-sp0n17 | wpconsent.com/wp-content/uploads/2024/11/theme-builder-f0M9jeNZJ7cO4bzd-2.svg |
figure#sp-z5n1l2 > div > span > img.sp-image-block-z5n1l2 figure#sp-z5n1l2 > div > span > img.sp-image-block-z5n1l2 | wpconsent.com/wp-content/uploads/2024/11/theme-builder-f49FbZHKgVID7jnv-2.svg |
figure#sp-mcogs0 > div > span > img.sp-image-block-mcogs0 figure#sp-mcogs0 > div > span > img.sp-image-block-mcogs0 | wpconsent.com/wp-content/uploads/2024/11/theme-builder-e8MFLjrBt1A5SgGm-2.svg |
figure#sp-cb83i6 > div > span > img.sp-image-block-cb83i6 figure#sp-cb83i6 > div > span > img.sp-image-block-cb83i6 | wpconsent.com/wp-content/uploads/2024/11/theme-builder-LY5ESWXi7VuoF0en-2.svg |
figure#sp-zdkk2c > div > span > img.sp-image-block-zdkk2c figure#sp-zdkk2c > div > span > img.sp-image-block-zdkk2c | wpconsent.com/wp-content/uploads/2024/11/theme-builder-3jh9VaUd8TCBonfv-2.svg |
figure#sp-pt3yfk > div > span > img.sp-image-block-pt3yfk figure#sp-pt3yfk > div > span > img.sp-image-block-pt3yfk | wpconsent.com/wp-content/uploads/2024/11/theme-builder-hBQPqfVaXyjznJuI-2.svg |
figure#sp-zro7vu > div > span > img.sp-image-block-zro7vu figure#sp-zro7vu > div > span > img.sp-image-block-zro7vu | wpconsent.com/wp-content/uploads/2024/11/theme-builder-yPmVpldubAD3QntT-2.svg |
figure#sp-j64c3v > div > span > img.sp-image-block-j64c3v figure#sp-j64c3v > div > span > img.sp-image-block-j64c3v | wpconsent.com/wp-content/uploads/2024/11/theme-builder-Pl17Hr4XYORChbN0-2.svg |
figure#sp-i5djs6 > div > span > img.sp-image-block-i5djs6 figure#sp-i5djs6 > div > span > img.sp-image-block-i5djs6 | wpconsent.com/wp-content/uploads/2024/11/theme-builder-x9QPIH4Rus87FodN-2.svg |
GDPR Compliance figure#sp-m2lran > div > span > img#sp-pd44xacb87 | wpconsent.com/wp-content/uploads/2024/11/gpdricon.svg |
CCPA Compliance figure#sp-yn4xxf > div > span > img#sp-mie8qnucpg | wpconsent.com/wp-content/uploads/2024/11/ccpaicon.svg |
Privacy Act Compliance figure#sp-azl3r0 > div > span > img#sp-eotgk90ueb | wpconsent.com/wp-content/uploads/2024/11/PrivacyActIcon.svg |
Custom Cookie Banners figure#sp-ccj2mv > div > span > img#sp-93zei6ccz0 | wpconsent.com/wp-content/uploads/2024/11/CookieBannerIcon.svg |
User Consent Logs figure#sp-por9z4 > div > span > img#sp-8qld4oxjyc | wpconsent.com/wp-content/uploads/2024/11/UserConsentIcon.svg |
Automatic Script Blocking figure#sp-frhbtl > div > span > img#sp-30zb3a5t60 | wpconsent.com/wp-content/uploads/2024/11/ScriptBlockingIcon.svg |
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 | wpconsent.com/wp-content/themes/wpconsent-edd/images/mobile-menu-open.svg |
More information about the performance of your application. These numbers don't directly affect the Performance score.
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.
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.
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.
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.
All sites should be protected with HTTPS, even ones that don't handle sensitive data. This includes avoiding mixed content, where some resources are loaded over HTTP despite the initial request being served over HTTPS. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs. Learn more about HTTPS.
Performance issues directly impact user engagement and conversion rates.
Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. Learn more about this errors in console diagnostic audit
Performance issues directly impact user engagement and conversion rates.
| Source | Description |
|---|---|
wpconsent.com/ line 660, col 0 | Mixed Content: The page at 'https://wpconsent.com/' was loaded over HTTPS, but requested an insecure image 'http://consent.stg/wp-content/uploads/2024/11/G-2-1024x1024.png'. This request has been blocked; the content must be served over HTTPS. |
wpconsent.com/ line 660, col 0 | Mixed Content: The page at 'https://wpconsent.com/' was loaded over HTTPS, but requested an insecure image 'http://consent.stg/wp-content/uploads/2024/11/Graphic-3-1024x1024.png'. This request has been blocked; the content must be served over HTTPS. |
wpconsent.com/ line 660, col 0 | Mixed Content: The page at 'https://wpconsent.com/' was loaded over HTTPS, but requested an insecure image 'http://consent.stg/wp-content/uploads/2024/11/Graphic-4-1024x1024.png'. This request has been blocked; the content must be served over HTTPS. |
wpconsent.com/ line 660, col 0 | Mixed Content: The page at 'https://wpconsent.com/' was loaded over HTTPS, but requested an insecure image 'http://consent.stg/wp-content/uploads/2024/11/Graphic-6-1024x1024.png'. This request has been blocked; the content must be served over HTTPS. |
wpconsent.com/ line 660, col 0 | Mixed Content: The page at 'https://wpconsent.com/' was loaded over HTTPS, but requested an insecure image 'http://consent.stg/wp-content/uploads/2024/11/Graphic-7-1024x1024.png'. This request has been blocked; the content must be served over HTTPS. |
wpconsent.com/ line 660, col 0 | Mixed Content: The page at 'https://wpconsent.com/' was loaded over HTTPS, but requested an insecure image 'http://consent.stg/wp-content/uploads/2024/11/setttings-1024x1024.png'. This request has been blocked; the content must be served over HTTPS. |
Issues logged to the `Issues` panel in Chrome Devtools indicate unresolved problems. They can come from network request failures, insufficient security controls, and other browser concerns. Open up the Issues panel in Chrome DevTools for more details on each issue.
Performance issues directly impact user engagement and conversion rates.
| Issue type |
|---|
| Mixed content |
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
Descriptive link text helps search engines understand your content. Learn how to make links more accessible.
Performance issues directly impact user engagement and conversion rates.
| Link destination | Link Text |
|---|---|
| wpconsent.com/features/ | See more |
| wpconsent.com/features/#integrations | See more |
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 |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Industry-standard audits powered by Google Lighthouse. — Desktop
Key metrics that affect user experience. — Desktop
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
1.03 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
3.60 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
48 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.084
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
1.03 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
3.64 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
COOKIE CONSENT MANAGEMENT PLUGIN FOR WORDPRESS
WordPress Privacy Compliance Ma… body.home > section#sp-bf2x0i | wpconsent.com/wp-content/uploads/2024/11/theme-builder-WQmhflAqSO9Txv8K-2.jpg | 333.8 KiB | 79.2 KiB |
Cookie Settings figure#sp-vmhxqu > div > span > img#sp-z54tcxwuve | wpconsent.com/wp-content/uploads/2024/11/theme-builder-1X2dYoPFyiEUkZMt-2.png | 99.8 KiB | 77.3 KiB |
Automatic Script Blocking figure#sp-gmy825 > div > span > img#sp-k0xsyh0jzl | wpconsent.com/wp-content/uploads/2024/11/theme-builder-VeaFGMDnbWLmyf2Y-2.png | 95.0 KiB | 72.1 KiB |
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /wp-content/plugins/seedprod-coming-soon-pro-5/public/fon... | 21.1 KiB | 20.9 KiB |
| wpconsent.com/wp-includes/css/dist/block-editor/style.min.css?ver=6.9.4 | 14.6 KiB | 14.6 KiB |
| wpconsent.com/wp-includes/css/dist/block-library/style.min.css?ver=6.9.4 | 14.2 KiB | 14.1 KiB |
| wpconsent.com/wp-includes/css/dist/components/style.min.css?ver=6.9.4 | 12.9 KiB | 12.8 KiB |
| /wp-content/plugins/seedprod-coming-soon-pro-5/public/css... | 13.2 KiB | 12.4 KiB |
| wpconsent.com/wp-content/plugins/wpconsent-mods/style.css?ver=1.1.2 | 12.2 KiB | 11.4 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| js.stripe.com/v3/?ver=v3 | 225.9 KiB | 164.3 KiB |
| www.googletagmanager.com/gtag/js?id=G-XMSZTEHCLS | 143.5 KiB | 61.5 KiB |
| /wp-content/plugins/seedprod-coming-soon-pro-5/public/js/... | 31.6 KiB | 29.9 KiB |
Minifying CSS files can reduce network payload sizes. Learn how to minify CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| wpconsent.com/wp-content/plugins/wpconsent-mods/style.css?ver=1.1.2 | 12.5 KiB | 2.0 KiB |
Minifying JavaScript files can reduce payload sizes and script parse time. Learn how to minify JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /wp-content/plugins/seedprod-coming-soon-pro-5/public/js/... | 20.1 KiB | 9.1 KiB |
| /wp-content/plugins/seedprod-coming-soon-pro-5/public/js/... | 14.9 KiB | 6.7 KiB |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
figure#sp-jpxhvf > div > span > img.sp-image-block-jpxhvf figure#sp-jpxhvf > div > span > img.sp-image-block-jpxhvf | wpconsent.com/wp-content/uploads/2024/11/theme-builder-js78d6Rh0BIKWery-2.svg |
WPBeginner Verified Badge div#footer-sub > div#footer-sub-2 > a > img | wpconsent.com/wp-content/themes/wpconsent-edd/images/wp-verified-footer.svg |
figure#sp-agjdjrv1kgp > div > span > img.sp-image-block-agjdjrv1kgp figure#sp-agjdjrv1kgp > div > span > img.sp-image-block-agjdjrv1kgp | wpconsent.com/wp-content/uploads/2024/11/theme-builder-HsYwGth4zxNSi2eI-2.svg |
div.duplicator-site-branding > a > span.duplicator-header-logo > img div.duplicator-site-branding > a > span.duplicator-header-logo > img | wpconsent.com/wp-content/themes/wpconsent-edd/images/wpconsent-logo.svg |
figure#sp-d114ifupr8lr > div > span > img.sp-image-block-d114ifupr8lr figure#sp-d114ifupr8lr > div > span > img.sp-image-block-d114ifupr8lr | wpconsent.com/wp-content/uploads/2024/11/theme-builder-2M19RQo8B0Vz45ha-2.svg |
figure#sp-j9xganb9amhl > div > span > img.sp-image-block-j9xganb9amhl figure#sp-j9xganb9amhl > div > span > img.sp-image-block-j9xganb9amhl | wpconsent.com/wp-content/uploads/2024/11/theme-builder-3x8eu6sGSmTWAHBU-2.svg |
figure#sp-rhtzruxhv02e > div > span > img#sp-yzze24offu figure#sp-rhtzruxhv02e > div > span > img#sp-yzze24offu | wpconsent.com/wp-content/uploads/2024/11/theme-builder-3x8eu6sGSmTWAHBU-2.svg |
figure#sp-vv206cpop6zs > div > span > img#sp-z2yibiatva figure#sp-vv206cpop6zs > div > span > img#sp-z2yibiatva | wpconsent.com/wp-content/uploads/2024/11/theme-builder-3x8eu6sGSmTWAHBU-2.svg |
figure#sp-kcr98gyod7e > div > span > img#sp-adblnu2vjs figure#sp-kcr98gyod7e > div > span > img#sp-adblnu2vjs | wpconsent.com/wp-content/uploads/2024/11/theme-builder-3x8eu6sGSmTWAHBU-2.svg |
figure#sp-alvroup4z2nh > div > span > img#sp-5q1tsby59l figure#sp-alvroup4z2nh > div > span > img#sp-5q1tsby59l | wpconsent.com/wp-content/uploads/2024/11/theme-builder-3x8eu6sGSmTWAHBU-2.svg |
figure#sp-at2srd6ivfp > div > span > img#sp-y3teuik8cd figure#sp-at2srd6ivfp > div > span > img#sp-y3teuik8cd | wpconsent.com/wp-content/uploads/2024/11/theme-builder-3x8eu6sGSmTWAHBU-2.svg |
figure#sp-sojz1gqghdq > div > span > img#sp-stz7iqcxnx figure#sp-sojz1gqghdq > div > span > img#sp-stz7iqcxnx | wpconsent.com/wp-content/uploads/2024/11/theme-builder-3x8eu6sGSmTWAHBU-2.svg |
figure#sp-sp0n17 > div > span > img.sp-image-block-sp0n17 figure#sp-sp0n17 > div > span > img.sp-image-block-sp0n17 | wpconsent.com/wp-content/uploads/2024/11/theme-builder-f0M9jeNZJ7cO4bzd-2.svg |
figure#sp-z5n1l2 > div > span > img.sp-image-block-z5n1l2 figure#sp-z5n1l2 > div > span > img.sp-image-block-z5n1l2 | wpconsent.com/wp-content/uploads/2024/11/theme-builder-f49FbZHKgVID7jnv-2.svg |
figure#sp-mcogs0 > div > span > img.sp-image-block-mcogs0 figure#sp-mcogs0 > div > span > img.sp-image-block-mcogs0 | wpconsent.com/wp-content/uploads/2024/11/theme-builder-e8MFLjrBt1A5SgGm-2.svg |
figure#sp-cb83i6 > div > span > img.sp-image-block-cb83i6 figure#sp-cb83i6 > div > span > img.sp-image-block-cb83i6 | wpconsent.com/wp-content/uploads/2024/11/theme-builder-LY5ESWXi7VuoF0en-2.svg |
figure#sp-zdkk2c > div > span > img.sp-image-block-zdkk2c figure#sp-zdkk2c > div > span > img.sp-image-block-zdkk2c | wpconsent.com/wp-content/uploads/2024/11/theme-builder-3jh9VaUd8TCBonfv-2.svg |
figure#sp-pt3yfk > div > span > img.sp-image-block-pt3yfk figure#sp-pt3yfk > div > span > img.sp-image-block-pt3yfk | wpconsent.com/wp-content/uploads/2024/11/theme-builder-hBQPqfVaXyjznJuI-2.svg |
figure#sp-zro7vu > div > span > img.sp-image-block-zro7vu figure#sp-zro7vu > div > span > img.sp-image-block-zro7vu | wpconsent.com/wp-content/uploads/2024/11/theme-builder-yPmVpldubAD3QntT-2.svg |
figure#sp-j64c3v > div > span > img.sp-image-block-j64c3v figure#sp-j64c3v > div > span > img.sp-image-block-j64c3v | wpconsent.com/wp-content/uploads/2024/11/theme-builder-Pl17Hr4XYORChbN0-2.svg |
figure#sp-i5djs6 > div > span > img.sp-image-block-i5djs6 figure#sp-i5djs6 > div > span > img.sp-image-block-i5djs6 | wpconsent.com/wp-content/uploads/2024/11/theme-builder-x9QPIH4Rus87FodN-2.svg |
GDPR Compliance figure#sp-m2lran > div > span > img#sp-pd44xacb87 | wpconsent.com/wp-content/uploads/2024/11/gpdricon.svg |
CCPA Compliance figure#sp-yn4xxf > div > span > img#sp-mie8qnucpg | wpconsent.com/wp-content/uploads/2024/11/ccpaicon.svg |
Privacy Act Compliance figure#sp-azl3r0 > div > span > img#sp-eotgk90ueb | wpconsent.com/wp-content/uploads/2024/11/PrivacyActIcon.svg |
Custom Cookie Banners figure#sp-ccj2mv > div > span > img#sp-93zei6ccz0 | wpconsent.com/wp-content/uploads/2024/11/CookieBannerIcon.svg |
User Consent Logs figure#sp-por9z4 > div > span > img#sp-8qld4oxjyc | wpconsent.com/wp-content/uploads/2024/11/UserConsentIcon.svg |
Automatic Script Blocking figure#sp-frhbtl > div > span > img#sp-30zb3a5t60 | wpconsent.com/wp-content/uploads/2024/11/ScriptBlockingIcon.svg |
More information about the performance of your application. These numbers don't directly affect the Performance score.
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.
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 div#duplicator-desktop-menu-links > ul > li#duplicator-desktop-menu-cta > a |
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.
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.
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 |
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 |
|---|
ul > li > div#footer-social > a ul > li > div#footer-social > a |
ul > li > div#footer-social > a ul > li > div#footer-social > 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.
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
Descriptive link text helps search engines understand your content. Learn how to make links more accessible.
Performance issues directly impact user engagement and conversion rates.
| Link destination | Link Text |
|---|---|
| wpconsent.com/features/ | See more |
| wpconsent.com/features/#integrations | See more |
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 |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Send Feedback