Performance
· 17 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.
3.64 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
6.19 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
185 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.
4.81 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.
6.21 s
Page Load Progression
BThird-Party Impact49% third-party, 0 ms blockingREVIEW
BJS Execution Cost738ms total JS executionREVIEW
Main Thread Breakdown
| Script | Total | Scripting | Parse/Compile | Party |
|---|---|---|---|---|
| https://js.stripe.com/v3/?ver=v3 | 277ms | 174ms | 100ms | 3rd |
| Unattributable | 191ms | 7ms | 0ms | 3rd |
| https://generatepress.com/ | 187ms | 16ms | 29ms | 1st |
| https://generatepress.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1 | 83ms | 69ms | 10ms | 1st |
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 | 164 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 Budget509 KB transferred, 37 requestsPASS
A+Text CompressionAll text resources are compressedPASS
AImage Optimization5 images, 0 KB saveablePASS
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 Hints1 hints, 0 missing preconnectsPASS
Current Resource Hints
1 resource hints configured
APage Weight Inventory37 resources · 509 KB · 184 KB savings availablePASS
~183.8 KiB of savings available
| # | Resource | Type | Size | Cache | Unused | 3rd party | Issues |
|---|---|---|---|---|---|---|---|
| — | — | ||||||
| 37 resources | 508.5 KiB | ||||||
A+Render-Blocking ResourcesNo render-blocking resources detectedPASS
A+Third-Party ResourcesNo third-party resources detectedPASS
A+Green HostingWhether the site is served from green-energy infrastructurePASS
Green Hosting
This site is hosted on green energy infrastructure
Provider: Cloudflare
Network Waterfall37 requests over 2192msINFO
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 | 277ms | 225 KB | 73% | $2/mo | Essential |
Unattributable Unattributable | Other | 191ms | 0 KB | — | $1/mo | Optional |
63% 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