Shopify stores often struggle with PageSpeed scores because of heavy themes and app scripts. Here's how to fix it and get your store loading faster.
Shopify stores have a unique set of performance challenges. Between theme bloat, app scripts, and large product images, it's common to see scores in the 30-50 range. But with the right approach, most Shopify stores can reach 70-85, and lean stores can hit 90+.
Here's how to do it.
Shopify's infrastructure is solid. The CDN is fast, SSL is included, and server response times are generally good. The slowness almost always comes from:
The Dawn theme (Shopify's free default theme) is one of the fastest available. It's built on performance-first principles and scores well out of the box.
If you're on a third-party theme, check its PageSpeed score on a demo store before committing. Many premium themes score in the 30-50 range on mobile.
Fast theme options:
If you're locked into a heavy theme for design reasons, focus on the other optimizations below.
Every Shopify app you install can inject scripts into every page of your store, even pages where the app isn't active. This is the single biggest cause of slow Shopify stores.
How to audit:
For each app, ask:
Common heavy apps and their impact:
Uninstall apps you don't actively use. Deleted apps sometimes leave script tags behind, so check your theme's theme.liquid file for orphaned scripts after uninstalling.
Product images are usually the biggest contributor to slow LCP on Shopify stores.
Best practices:
For collection pages: Shopify loads all product images on the page. If you have 50 products with large images, this adds up. Make sure lazy loading is enabled in your theme for collection grids.
For apps you can't remove, you can often reduce their performance impact by loading them after the page is interactive.
In your theme's theme.liquid, find app script tags that look like:
<script src="https://cdn.someapp.com/widget.js"></script>
Add defer to defer their execution:
<script defer src="https://cdn.someapp.com/widget.js"></script>
Note: This can break some apps that expect to run synchronously. Test carefully.
Shopify has added performance tooling directly in the admin:
Online Store > Themes > Performance shows your theme's speed score and specific recommendations.
Shopify Speed Score in the admin is based on a sample of real page loads, not just a single PageSpeed test. Use it as a baseline but also run tests with our tool for more detail.
On most Shopify stores, the LCP element is either the hero image on the homepage or the main product image on product pages.
For the hero image:
index.liquid)<head>For product pages:
Most modern Shopify themes enable lazy loading by default. If yours doesn't, add loading="lazy" to images in collection grids, related products, and other below-fold content in your theme code.
| Setup | Realistic Score | |---|---| | Dawn theme, minimal apps, optimized images | 80-90 | | Fast theme, 5-8 apps | 65-80 | | Heavy theme, many apps | 30-55 | | Large collection pages | 50-70 |
Mobile scores are typically 15-25 points lower than desktop on Shopify. Focus your optimization efforts on mobile.
Shopify performance is more constrained than other platforms because you're working within the platform's limits. But app management and image optimization alone can move the needle by 20-30 points for most stores.
Test your Shopify store to see your current PageSpeed score on both mobile and desktop.
How fast is your site?
Get your PageSpeed score in seconds — free, no sign-up needed.
Test Your Site →