How-to · 7 min read
4 ways to find the Shopify theme a store uses
There's more than one way to answer "what theme is this store running?" Some take five seconds; some take five minutes and a little nerve. Here are the four reliable methods, from easiest to most manual, with the honest trade-offs of each so you can pick the right one for the moment.
Method 1 — Use a theme detector (fastest)
A detector like ThemeScope is the quickest route: paste the store's address, and it reads the public source and returns the theme name in seconds. No install, works on your phone, and it handles the fiddly parsing for you.
Best for: everyday checks, scanning many competitors quickly, anyone who doesn't want to touch code.
Watch out for: custom and headless stores will still come back as "custom" — that's a real answer, not a tool failure.
Method 1, right here
Paste a store URL and get the theme name now.
Method 2 — Read the page source yourself
If you like doing things by hand — or want to confirm a tool's answer — you can find the theme in the raw source of the page.
- Open the store's homepage in a desktop browser.
- Right-click an empty area and choose View Page Source (or press
Ctrl/Cmd + U). - Search the page with
Ctrl/Cmd + FforShopify.theme. - You'll find a small block that includes a
"name"value — that's the active theme.
Best for: confirming a result, or learning how detection actually works.
Watch out for: it's slower, and if the owner has renamed things, the block may be missing.
Method 3 — Use browser developer tools
For a deeper look, open developer tools (F12 or right-click → Inspect), go to the Console tab, type Shopify.theme and press Enter. If the store exposes it, you'll see the theme object printed out with its name. The Network tab also reveals theme asset files loading from Shopify's CDN, which confirms the platform.
Best for: developers and detailed audits.
Watch out for: it's overkill for a quick check and assumes some comfort with dev tools.
Method 4 — Browser extensions
Several extensions add a button that reports the theme while you browse. Handy if you inspect stores constantly, but extension accuracy varies depending on how each one is built and what permissions it has, and you have to install and trust a third party.
Best for: people who audit stores all day and want it one click away.
Watch out for: inconsistent results and the usual caution around installing extensions.
Which should you use?
For 95% of situations, a web-based detector wins on speed and zero friction. Reach for View Source or dev tools when you want to verify an answer or understand the mechanics, and consider an extension only if theme research is a daily habit. Whatever the method, remember the same limit applies to all of them: a truly custom or headless store simply doesn't advertise a Theme Store name, so "custom" is the correct and final answer.
A quick note on using what you find
Identifying a premium theme doesn't give you a licence to it — you still buy it from its creator or the Shopify Theme Store. Detection is for research and inspiration: see what works, understand why, then make it your own.