On-page SEO

Page Speed Scores of Every Shopify Theme

With so many local businesses forced to close due to the pandemic, I was excited to see Shopify’s tutorial to help retailers set up a “Buy Online, Pickup Curbside” store.

The fourth step of Shopify’s tutorial suggests a free, customized theme, called Debut.

Shopify’s “Buy Online, Pickup Curbside” tutorial suggests using the Debut theme.

Shopify’s “Buy Online, Pickup Curbside” tutorial suggests using the Debut theme.

The tutorial is a helpful explanation. But it lacks instructions to optimize the new site for search engines or to speed up the user experience.

In this post, I will share a study I conducted on the page speed of Shopify themes.

Shopify Themes

I recently worked with a developer on a project to help a merchant speed up its Shopify store. We improved the mobile page speed from 23 to 84 on Google’s PageSpeed Insights tool. The desktop speed improved from 77 to 94. We achieved similar improvements across different page types.

But the biggest takeaway was how the Shopify theme impacts the page speed. The merchant had customized the premium theme ShowTime, which was beautiful and feature-rich. Unfortunately, it was also slow. By optimizing the theme files, the developer significantly improved the speed.

Thus, having worked on that project and having observed the Debut theme, I had an idea. What if I ran Google Lighthouse (which includes PageSpeed Insights scores) on all themes in the Shopify store? It could help new merchants locate a fast store and avoid the cost of optimizing a slow theme later.

Page Speed of Themes

Shopify lists 72 themes. Checking the speed of each one manually is doable. But it’s more fun to automate the process as I can collect as many metrics as necessary, and repeat the analysis as themes are updated.

The summary results of the study appear below. The page speed scores are from Google Lighthouse. Note that ShowTime, the theme chosen by our client, is among the slowest in mobile performance.  But the theme recommended by the Shopify tutorial, Debut, is near the top. You can sort the table by any column.

ThemePage Speed Score:
Mobile
Page Speed Score:
Desktop
Simple0.920.99
Editorial0.890.99
Boundless0.880.97
Debut0.880.99
Supply0.860.99
Venture0.850.99
District0.830.94
Showcase0.820.98
Capital0.810.98
Local0.80.98
Narrative0.81
Streamline0.790.99
Label0.790.99
Kingdom0.780.98
Minimal0.780.99
Boost0.770.98
Fashionopolism0.740.97
Modular0.730.98
Grid0.720.97
Brooklyn0.720.98
Expression0.70.97
Sunrise0.70.99
Cascade0.691
Impulse0.680.92
Split0.680.92
Empire0.680.99
Atlantic0.680.99
Symmetry0.670.98
Prestige0.660.96
Ira0.660.96
Kagami0.660.97
Vantage0.640.9
Story0.640.98
Editions0.630.97
Focal0.620.94
Alchemy0.620.94
Artisan0.610.97
Trademark0.60.95
Masonry0.570.88
Testament0.550.94
Pipeline0.540.93
Flow0.530.66
Colors0.530.95
Mobilia0.530.96
Canopy0.50.97
Responsive0.490.93
Avenue0.480.77
Launch0.480.81
Maker0.480.87
Vogue0.470.88
Startup0.430.86
Providence0.410.75
Warehouse0.410.88
Handy0.40.85
California0.40.95
Mr Parker0.40.95
Context0.370.79
Blockshop0.370.81
Icon0.360.93
Broadcast0.340.77
Pacific0.340.81
Reach0.330.81
Venue0.330.81
Motion0.320.8
Envy0.310.81
Parallax0.310.82
Lorenza0.30.67
Galleria0.30.78
Palo Alto0.290.77
ShowTime0.250.83
Loft0.230.86
Retina0.080.58

For a compromise between speed and functionality, consider more granular speed metrics. To help, I assembled six such metrics (called “Lab Data” on PageSpeed Insights) on a Google Sheet.  Those metrics are as follows.

  • First Contentful Paint measures how long it takes to see anything on the page. A good value is less than 1 second.
  • First Meaningful Paint measures when the primary content of the page is visible. A good value for this metric is under 2 seconds.
  • Speed Index measures how fast the content of a page is visibly populated. Under 4.3 seconds is good.
  • First CPU Idle measures how long it takes for the page to accommodate input. A good value is under 4.7 seconds.
  • Time to Interactive measures how long the user has to wait for the page to be fully interactive. The page might be fully visible, but still not ready to take input from the user. A fast value for this metric is under 5.2 seconds.
  • Max Potential Input Delay measures the worst case of how long it takes the browser to respond to typical tasks performed by a user, such as a click on a button. A fast value for this metric is under 130 milliseconds.

Looking at the detailed metrics provides nuances. For example, the Avenue theme ranks 47th on mobile page speed, but the Max Potential Input Delay is bad at 2,278 milliseconds (2.2 seconds).

For a compromise between speed and functionality, consider granular “Lab Data” speed metrics in PageSpeed Insights.

For a compromise between speed and functionality, consider granular “Lab Data” speed metrics in PageSpeed Insights. Click image to enlarge.

The Process

I manually produced a list of themes (including their demo site URLs) from the Shopify Themes Store.

Next, I wrote a Python script that reads the list of URLs and runs the PageSpeed Insights API six times per URL: three to obtain detailed mobile metrics and three for desktop. Repeating the tests is essential to account for changes in network conditions. I reported the median results in the Google Sheet.

The JSON output returned by the PageSpeed Insights API is a complex, nested structure. I used  JSONPath to simplify the extraction process.

I also found JSONPath evaluator to be incredibly useful. I used the handy jsonpath-ng Python library to run the JSONPaths.

What follows are the JSONPaths I used to extract each metric.

jsonpath_first_contentful_paint = parse("$.lighthouseResult.audits.first-contentful-paint")
jsonpath_first_meaningful_paint = parse("$.lighthouseResult.audits.first-meaningful-paint") = parse("$.lighthouseResult.audits.speed-index")
jsonpath_first_cpu_idle = parse("$.lighthouseResult.audits.first-cpu-idle")
jsonpath_interactive = parse("$.lighthouseResult.audits.interactive")
jsonpath_max_potential_fid = parse("$.lighthouseResult.audits.max-potential-fid")
jsonpath_score = parse("$.lighthouseResult.categories.performance.score")
Hamlet Batista
Hamlet Batista
Bio   •   RSS Feed


x