Site platforms

Shopify, and what an answer engine can read of it

Shopify gave stores control of robots.txt in 2021, through a theme template rather than a settings field, and most stores have never touched it. The default is reasonable — it does not block the AI crawlers — so a failure on that check usually means somebody added a template, or an app did.

The gap on most stores is schema. Themes generate Product and BreadcrumbList markup automatically and nothing else, so the store has rich structured data about every item it sells and no statement at all about who the company is. That is the Organization check, and it is a paste into theme.liquid.

How we recognise it: an X-Shopify-Stage or X-ShopId response header, or assets on cdn.shopify.com. Run the free readiness check and the fixes it gives you are the Shopify ones below.

What to do

  1. 1.Look at robots.txt.liquid before you add one

    Online Store → Themes → ⋯ → Edit code. If there is no robots.txt.liquid, Shopify is serving its sensible default and you should leave it alone. Adding a template to "fix" a check that is already passing is how stores end up blocking crawlers by accident.

  2. 2.Put the Organization block in theme.liquid

    Inside the <head>, so it appears on every page. Your theme is already emitting Product schema per item; this is the one that says who is selling them.

    layout/theme.liquid, inside <head>

    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "Organization",
      "name": {{ shop.name | json }},
      "url": {{ shop.url | json }},
      "sameAs": [
        "https://www.instagram.com/yourstore",
        "https://www.linkedin.com/company/yourstore"
      ]
    }
    </script>
  3. 3.Give shipping, returns and pricing their own pages

    Assistants answering "is X worth buying" reach for the terms as often as the price, and a store that keeps them in a modal or a footer accordion has nothing for the engine to cite. Real pages under /pages/ are cheap and they are what gets quoted.

The readiness checks on Shopify

CueScout runs eight checks on whether an answer engine can read a site at all. These are the ones whose answer is different on Shopify — the rest are the same everywhere.

AI crawlers allowed in robots.txt

Shopify serves robots.txt from a template. In your admin: Online Store → Themes → ⋯ → Edit code → Add a new template → robots.txt.liquid, then remove the crawler blocks it renders.

llms.txt present and parseable

Not possible here

Shopify will not serve an arbitrary file from your root, so /llms.txt cannot be a file. Either put it behind a proxy on your own domain, or accept this one and spend the effort on the checks you can pass.

Organization schema with sameAs links

Add Organization JSON-LD with sameAs links to theme.liquid, inside <head>. Most themes already emit Product and BreadcrumbList schema and no Organization at all.

Public pricing page reachable

Your product pages carry the prices, but assistants also look for one page that explains what things cost. A plain page under /pages/pricing gives them a URL to cite.

These describe Shopify’s own settings, which move without warning us. Last checked against the product on 2026-08-14.

What this does not do

  • You cannot serve a file from the store root. /llms.txt is not achievable on Shopify without a proxy in front of the domain.
  • robots.txt is a Liquid template, not a text file. Anything you write there renders through Liquid, so a stray tag can produce a robots.txt that parses as nonsense.
  • CueScout reads the storefront from the outside. It has no Shopify app, does not connect to your admin, and cannot see orders, customers or anything else.

Frequently asked questions

Is there a CueScout Shopify app?

No. Everything is read from your public storefront over HTTP, so there is nothing to install and no permissions to grant.

Does blocking AI crawlers protect my product descriptions?

It stops them being quoted, which is the same thing as not being recommended. Whether that trade is right for you is a real decision — but it is a decision, and most stores that have it are not aware they made one.

Do the AI engines read Shopify product schema?

The search-grounded ones retrieve whatever page answers the question, and structured data helps them parse it. What they cite far more often, though, is a review or a roundup that mentions your product, which is not on your domain at all.

Related

Every integration we publish

See where your Shopify site stands

The readiness check is free, needs no signup, and takes about half a minute. It works out what your site is built on and gives you the fixes written for it.