Could anyone tell me why my site performance is so extremely bad?
I’m feeling stuck because I deleted all unnecessary JavaScript and code embeds. I compressed all images, but I still have very unsatisfactory loading times.
What can I do?
What can I do?
My website speed test.
Read-Only
Holy molly first time seeing this lol
Where do you host your website ? Can you show your Advanced publishing options in Publishing section of your site settings ?
I can’t see where but looks like your website is preventing google from using the cache so it unloads the website when it’s trying to load. It could be the cookies or a custom code
First of all, thank you very much. The actual host is all-inkl (a German provider). Since I cannot directly publish the eCommerce website via all-inkl with the Webflow Service, I had to set up a redirect via Cloudflare. What other information can I provide you with?
Hi, @JOHN-CHERRY
Based on your PageSpeed report (mobile), the slow performance isn’t caused by basic things like image compression - the main issues are render-blocking resources and heavy initial loading
https://pagespeed.web.dev/analysis/http-kyana-germany-shop/8dd5q6i99k?form_factor=mobile Here’s a practical checklist to diagnose and improve performance,
- Render-blocking JavaScript and CSS
-
Scripts and CSS loading before main content block rendering, slowing FCP.
-
Solution: Defer non-critical JS, inline critical CSS, and remove unused code from third-party embeds or custom scripts.
-
< script>
function loadDelayedScripts() {
var script = document.createElement(“script”);
script.src = “https://example.com/heavy-script.js”;
script.defer = true;
document.body.appendChild(script);
}
window.addEventListener(“scroll”, loadDelayedScripts, { once: true });
window.addEventListener(“click”, loadDelayedScripts, { once: true });
window.addEventListener(“touchstart”, loadDelayedScripts, { once: true });
2. Remove / Optimize Third-Party Scripts
Alternatively, if you’d prefer not to manually optimize performance, third-party tools like Website Speedy can help analyze your site, identify heavy assets or render-blocking scripts, and pinpoint factors affecting load speed and responsiveness.
(Disclaimer: We are the developers of Website Speedy and happy to assist you .)