Clearing your Shopify cache forces your browser or Shopify's servers to reload fresh files, fixing issues where theme changes aren't showing, products appear outdated, or pages load slowly. This guide covers three methods: clearing your browser cache, forcing Shopify to re-cache your theme, and clearing the Shopify admin search history.

Key Takeaways
1
To clear cache on Shopify in Chrome, press Ctrl+Shift+R (Windows) or Cmd+Shift+R (Mac) for an instant hard reload. For a full clear, go to Settings > Privacy > Clear browsing data and check Cached images and files.
2
In Firefox, go to Settings > Privacy and Security > Cookies and Site Data > Clear Data, then check Cached Web Content.
3
For Safari, go to Preferences > Advanced > Show Develop menu, then click Develop > Empty Caches.

Why Clear the Cache on Shopify?

Clear your Shopify cache when:

  1. You've made changes to your theme or site code, but they're not visible.
  2. Your site is loading slowly, and you suspect cached data is the culprit.
  3. You want to ensure your customers see the most up-to-date information and content.

By clearing the Shopify cache, you force your site to reload all the necessary files and data, ensuring that your visitors see the latest version of your Shopify store.

Shopify Cache Clearing: Quick Reference by Method

Before going through each browser step-by-step, here is a quick guide showing the fastest approach per platform:

  • Chrome (desktop): Ctrl+Shift+R (Windows) or Cmd+Shift+R (Mac) for instant hard reload. Or go to Settings, then Privacy and Security, then Clear browsing data.
  • Firefox (desktop): Ctrl+Shift+R or Cmd+Shift+R for hard reload. Or Settings, then Privacy and Security, then Clear Data.
  • Safari (desktop): No keyboard shortcut for cache-only. Enable Develop menu, then click Develop, then Empty Caches.
  • iPhone (Safari): Settings app, then Safari, then Clear History and Website Data. Or clear just the store via Settings, then Safari, then Advanced, then Website Data.
  • Android (Chrome): Three-dot menu, then Settings, then Privacy and Security, then Clear browsing data.
  • Shopify server-side cache: Edit theme.liquid and save. No direct admin button exists.
  • Shopify admin search history: Clear shopify.com site data in Chrome via Settings, then Privacy, then See all site data and permissions.

How Do I Clear the Cache in Shopify on Chrome?

The fastest way to clear cache in Chrome is the keyboard shortcut: press Ctrl+Shift+R (Windows) or Cmd+Shift+R (Mac) to do a hard reload that bypasses the cache. For a full clear:

  1. Go to Settings.
  2. Scroll to the bottom and click Show advanced settings.
  3. Under Privacy and security, choose Clear browsing data.
  4. Check the box next to Cached images and files. Uncheck history and cookies to avoid clearing things you need.
  5. Click Clear data.

How to Clear Shopify Cache in Firefox

  1. Click the three lines in the top-right corner.
  2. Click Settings.
  3. Click Privacy & Security from the left-hand menu.
  4. Scroll down to Cookies and Site Data and click Clear Data.
  5. Check the box next to Cached Web Content.
  6. Click Clear.

Keyboard shortcut: Ctrl+Shift+R (Windows) or Cmd+Shift+R (Mac) forces a cache-bypass reload in Firefox too.

How to Clear Shopify Cache in Safari

  1. Click Safari in the top-left corner of the screen.
  2. Click Preferences.
  3. Click the Advanced tab.
  4. Check the box next to Show Develop menu in menu bar.
  5. Close the Preferences window.
  6. Click Develop in the menu bar.
  7. Click Empty Caches.

How to Clear Shopify Cache on iPhone and Android

There's no in-app cache clear button in the Shopify mobile app. Clearing the cache on a mobile device means clearing the cache in whichever browser you use to view your store.

On iPhone (Safari):

  1. Open the Settings app.
  2. Scroll down and tap Safari.
  3. Tap Clear History and Website Data.
  4. Confirm by tapping Clear History and Data.

For a cache-only clear without removing history on iPhone, go to Settings > Safari > Advanced > Website Data, search for "myshopify.com" or your store domain, and delete just that entry.

On Android (Chrome):

  1. Open Chrome and tap the three-dot menu in the top-right corner.
  2. Tap Settings > Privacy and security > Clear browsing data.
  3. Select Cached images and files only.
  4. Tap Clear data.

After clearing on mobile, reload your Shopify store to check whether the display issue is resolved.

Does Shopify Have a Server-Side Cache?

Yes. Shopify automatically manages server-side caching. You cannot clear it directly from the admin panel. Shopify's CDN caches your storefront pages and theme assets globally. When you publish a new theme version or save changes, Shopify re-caches automatically within a few minutes. If changes still aren't showing after 10 to 15 minutes, you can force a re-cache by making a minor edit to your theme code.

Here's how to force Shopify to re-cache your theme:

  1. From your Shopify admin, click Online Store then Themes.
  2. Click the Actions button next to your current theme and click Edit code.
  3. In the left-hand menu, click Layout then theme.liquid.
  4. Scroll to the bottom and add: {% comment %} {{ 'now' | date: '%Y%m%d%H%M%S' }} {% endcomment %}
  5. Click Save.

This timestamp comment tells Shopify it's a new theme version, triggering a fresh cache of your store. You can remove the comment after a few minutes. The re-cache has already been triggered.

How Do I Clear the Shopify Admin Search History?

The Shopify admin shows recent searches in the search bar when you click on it. To clear this history, clear your browser's browsing data for the shopify.com domain specifically. In Chrome: go to Settings, then Privacy and security, then Cookies and other site data, then See all site data and permissions, then search for "shopify.com" and click the trash icon. This removes stored search history and autocomplete entries for the Shopify admin without clearing your entire browser history.

Clearing Shopify Theme Cache With the CLI (For Developers)

Developers using Shopify CLI can clear the local development cache by running:

shopify theme dev --path /your-theme-folder

This restarts the local development server and clears any locally cached assets. For staging environments connected to Shopify's servers, pushing a theme update via shopify theme push triggers a cache invalidation on Shopify's CDN for that theme's files.

Cache Still Not Clearing? Troubleshooting

If you've cleared the browser cache and forced a theme re-cache but issues persist, work through these checks:

  • Try a different browser. If the problem disappears in another browser, the issue is specific to cached data in your main browser. Do a deeper clear, including cookies for your store domain.
  • Check if it's a CDN propagation delay. Shopify's CDN serves your store from edge servers around the world. After forcing a re-cache, it can take up to 30 minutes for all edge servers to serve the updated version. Wait and test from a different network or device.
  • Use an incognito/private window. Incognito mode doesn't use the browser cache from your regular session. If your store looks correct in incognito, the issue is browser cache rather than Shopify's CDN.
  • Check your theme version. If you're running an older theme that hasn't been saved recently, Shopify may be serving a cached version of a previous build. Make a minor edit and save to force a fresh cache.
  • Disable browser extensions. Some ad blockers and privacy extensions interfere with how Shopify assets load. Test with extensions turned off.
  • Check for app conflicts. Shopify apps that inject scripts or modify storefronts (chat widgets, reviews apps, upsell tools) can cache their own assets independently of your theme. If a specific element isn't updating, disable each app temporarily to isolate the source.

For a deeper look, see our complete guide to boosting Shopify website speed.

How to Clear Cache on Shopify: Final Summary

Clearing your Shopify cache resolves most display issues caused by outdated files. Start with the browser keyboard shortcut (Ctrl+Shift+R / Cmd+Shift+R). It takes two seconds and fixes most problems instantly. If the issue persists after a hard reload, check whether Shopify's server-side cache needs forcing by making a small theme code edit. For admin search history, clear site data for shopify.com in your browser settings. Most cache-related issues on Shopify resolve within 15 minutes using one of these methods.

Show More

* read the rest of the post and open up an offer