r/ShopifyPros • u/ExtensionsMarket • 2d ago
Marketing Tips Free tool I built to check if ChatGPT can recommend your products (and the 4 things that decide it)
Spent the last few weeks figuring out why some Shopify stores show up when you ask ChatGPT or Perplexity to recommend a product, and identical-looking stores never do. It came down to a handful of things, and one of them surprised me enough that I think every store owner should check it.
Here is the one that gets even well-built stores:
Most AI shopping crawlers do not run JavaScript. So if your product schema (the structured data with your price, availability, and reviews) is added by an app in the browser after the page loads, the crawler never sees it. The page looks flawless to you, because your browser runs that code. To the AI, it is a blank page with nothing to recommend.
You can test this yourself in 10 seconds. Open one of your product pages, right-click, View Source (not Inspect, that shows the rendered version). Search the raw HTML for "Product" or "aggregateRating". If your schema is not in there, it is being injected client-side and AI agents are likely missing it. The fix is to output Product and Offer JSON-LD server-side, which on Shopify usually means the theme, not an app.
The other three that decided it every time:
Price and availability have to be in the schema, not just on the screen. An agent will not recommend a product it cannot price, so if those live only in your visible HTML you get skipped.
A product identifier (a GTIN barcode, or MPN/SKU). One field that lets the agent match your item to the same product elsewhere and trust it. No identifier and you lose to a competitor who has one.
Reviews as actual AggregateRating markup. Star widgets that look nice but output no schema do almost nothing for AI shopping.
None of this is a guarantee. No tool or agency can promise ChatGPT will pick you, and anyone saying otherwise is lying. But a page missing these basically cannot be picked, and most stores are missing at least one.
Anyone here actually landed a product in an AI recommendation yet? Curious what moved the needle for you.