We’re urgently looking to improve our store’s performance. Recently, we noticed a significant slowdown, especially on mobile, Google PageSpeed Insights is showing a score of only 34/100, with pages taking 6–20 seconds to load. Since most of our customers shop on their phones, this is a major issue for sales, SEO rankings, and overall customer experience.
We recently installed Fast Bundle as our bundle app, and it’s possible this has contributed to the slowdown. How can we get to optimise the site for faster performance?
Hi @FranZN ,
I hope this message finds you well.
Test site speed with Fast Bundle disabled.
Compress all images to WebP and use Shopify resizing.
Audit apps → remove or replace heavy ones.
Move any non-essential scripts to load defer.
Thanks
Manoj
Usually, the cause code of slow speed on phone is due to large elements existing on a store, such as large size images, JS codes and apps or plugs installed recently. But it depends here and need to further check by checking the website details in real.
Please remember to share store URL with this kind of questions raised next time.
Mobile performance issues are usually related to how assets are loaded on the storefront rather than a single system-level problem.
A few core areas usually help improve performance in a measurable way.
Optimize images and initial content
Ensure images are uploaded at the size they’re displayed on mobile and avoid loading large visuals in the first viewport unless they’re essential. Using explicit dimensions helps prevent layout shifts and improves perceived load speed.
<img
src=“/images/product.jpg”
alt=“Product image”
width=“800”
height=“600”
loading=“lazy”
decoding=“async”>
Reduce render-blocking scripts
Non-critical scripts such as analytics, reviews, or chat tools should not block the initial render. Deferring these scripts allows the page to load content first and execute scripts afterward.
Fonts and styling
Limit font families and weights to what’s required. Fewer font requests speed up text rendering on mobile connections.
After applying these changes, test again with PageSpeed Insights or Lighthouse to confirm improvements to Core Web Vitals.
Alternatively, if you don’t prefer not to handle performance optimization manually Website Speedy, helps identify and optimize assets that affect mobile load performance.
( Disclosure: We are the developers of Website Speedy and are happy to assist if needed.)