How can I compress page code for better store speed?

Topic summary

Improving store speed by minifying theme code was the main recommendation. Minification means removing unnecessary spaces and formatting from CSS, JavaScript, and sometimes Liquid files to reduce file size and load time.

Key suggestions:

  • Minify CSS with an online CSS minifier, then replace the original code with the compressed version.
  • Minify JavaScript the same way using a JS minifier.
  • Keep backups of all original files before editing, ideally by duplicating the live theme first and working on the copy.

Practical safeguards were emphasized:

  • Save unminified versions under renamed backup files so future edits remain manageable.
  • Test changes on a duplicate theme rather than directly on the live store.

Additional development notes:

  • Liquid files may also be minified, but this is less straightforward than CSS/JS because public tools are limited.
  • If speed tools still report unminified assets after changes, the remaining files may come from installed apps; in that case, the app developer may need to optimize them.

No final resolution was reported, but the thread provided clear next steps.

Summarized with AI on March 8. AI used: gpt-5.4.

How I can Compression Page Code to optimize my store speed?

Hi,

I think you’re asking how to minify your code. One way to do that, is to individually copy you’re CSS files code to css minifier and click minify.

Then paste the minified code back into your css file. Also keep a backup of your un minified code preferably on your theme, incase something goes wrong.

You can do the same for JS files with ​ javascript minifier.

Hope that helps!

Best,

eStoreSpeedOptimization

1 Like

@NomanSohai couple additional tips:

  1. Backup your live theme first and make the code edits on the new theme.

  2. Backup up each file that you are editing first, so your team and future developers have access to the unminified code so that the files / logic are editable. I like to rename the file for a backup, for example if you have a file called custom.css, create a file called old-custom.css, or custom.bak.css and put the original code there so it’s available later.

  3. If you don’t want to spend time on those processes, or if you’re not familiar in the code we (Speed Boostr, the Shopify optimization team) have an app called File Optimizer that handles this for you. A bonus is that it will also minify Liquid files - there’s not a public tool to do that so if you have Liquid files you can either user our app, or to do it manually search for all the liquid tags, then minify the JS in between those blocks.

  4. If you still see minification warnings after compressing your files, check to see if the source of the files is coming from an app. If it is, contact the app developer to request them to minify their files.

Good luck on the optimizations. :+1:

2 Likes