Performance
· 15 checks — Lighthouse + waterfall + sustainability rolled into one auditable list.Performance-focused optimization plan with CWV assessment, top offenders, and time estimates
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
846 ms
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
967 ms
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
2 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.001
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
846 ms
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
973 ms
Page Load Progression
CJS BundlesAction15 scripts, 184 KB unusedREVIEW
Downloaded but never executed on this page.
| Script | Size | Unused | Minified | Party |
|---|---|---|---|---|
| https://js.stripe.com/v3/?ver=v3 | 225 KB | 163 KB (73%) | ✓ | 3rd |
| https://generatepress.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1 | 32 KB | 20 KB (64%) | ✓ | 1st |
| https://generatepress.com/wp-content/plugins/gp-premium/general/js/smooth-scroll.min.js?ver=2.5.5 | 3 KB | — | ✓ | 1st |
| https://generatepress.com/wp-content/plugins/affiliate-wp/assets/js/tracking.min.js?ver=2.31.2 | 1 KB | — | ✓ | 1st |
| https://generatepress.com/wp-content/plugins/affiliate-wp/assets/js/jquery.cookie.min.js?ver=1.4.0 | 1 KB | — | ✓ | 1st |
| https://generatepress.com/wp-content/plugins/generateblocks-pro/dist/overlay.js?ver=2.5.0 | 8 KB | — | ✓ | 1st |
| https://generatepress.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1 | 5 KB | — | ✓ | 1st |
| https://generatepress.com/wp-content/plugins/easy-digital-downloads/assets/build/js/frontend/edd-ajax.js?ver=3.6.2 | 4 KB | — | ✓ | 1st |
| https://generatepress.com/wp-content/plugins/edd-custom-prices/assets/build/js/edd-cp-form.js?ver=1.5.11 | 1 KB | — | ✓ | 1st |
| https://generatepress.com/wp-content/plugins/generateblocks-pro/dist/classic-menu.js?ver=2.5.0 | 3 KB | — | ✓ | 1st |
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
BHTTP Cachingpublic, max-age=0, s-maxage=2592000REVIEW
public, max-age=0, s-maxage=2592000
| Directive | Value | Meaning |
|---|---|---|
| public | — | Any cache may store this response |
| max-age | 0 | Cache for 0 seconds |
| s-maxage | 2592000 | CDN caches for 4 weeks |
A+Page Weight Budget627 KB transferred, 44 requestsPASS
AThird-Party Impact40% third-party, 0 ms blockingPASS
A+Text CompressionAll text resources are compressedPASS
AImage Optimization12 images, 0 KB saveablePASS
A+JS Execution Cost193ms total JS executionPASS
Main Thread Breakdown
| Script | Total | Scripting | Parse/Compile | Party |
|---|---|---|---|---|
| https://generatepress.com/ | 79ms | 3ms | 1ms | 1st |
| https://js.stripe.com/v3/?ver=v3 | 60ms | 38ms | 21ms | 3rd |
| Unattributable | 54ms | 2ms | 0ms | 3rd |
A+Font Loading2 fonts (43 KB)PASS
Web fonts
2
43 KB total
Render-blocking
0
of 2
Dominant font-display
swap
Most common across fonts
Font loading timeline
Optimization checklist
- Preload critical fonts (priority=high)
- Use woff2 format for all fonts
- Set font-display to swap, optional, or fallback
- Subset large fonts (≤100 KB each)
A+Resource CachingAll resources properly cachedPASS
A+Critical Rendering PathNo render-blocking resourcesPASS
A+Resource HintsNo optimization neededPASS
A+Page Weight Inventory44 resources · 627 KB · 184 KB savings availablePASS
~183.7 KiB of savings available
| # | Resource | Type | Size | Cache | Unused | 3rd party | Issues |
|---|---|---|---|---|---|---|---|
| — | — | ||||||
| 44 resources | 627.5 KiB | ||||||
A+Green HostingWhether the site is served from green-energy infrastructurePASS
Green Hosting
This site is hosted on green energy infrastructure
Provider: Cloudflare
Network Waterfall44 requests over 2048msINFO
Third-Party Script CostPer-script blocking time, transfer cost, and cache headersINFO
| Script | Category | Execution | Transfer | Unused | Monthly Cost | Verdict |
|---|---|---|---|---|---|---|
Stripe js.stripe.com | Payment | 60ms | 225 KB | 73% | $0/mo | Essential |
Unattributable Unattributable | Other | 54ms | 0 KB | — | $0/mo | Optional |
59% of JavaScript execution time comes from third-party scripts.
Third-party scripts (analytics, ads, social, A/B testing) often dominate execution time — every one is a perf-and-privacy tax.
Learn more ▾ ▴
Each third-party script is a black box: you don't control when it loads, what it executes, or how much it grows. They often account for a major share of total blocking time on average sites (HTTP Archive's Web Almanac documents the trend). Audit which ones you actually need, defer the rest, and use facade patterns (lite-youtube, lite-vimeo) for embedded media.
Source: web.dev / HTTP Archive Web Almanac
73% of Stripe's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev