Skip to content

Product Data

Shopify sizing, materials, and care fields for AI

Published

The three fields Shopify names

Shopify's optimizing-for-AI doc names 'sizing guides, material information, and care instructions' explicitly. The Catalog-optimization doc reinforces the description-completeness requirement. Three structured layers that AI agents read — and that classical theme PDPs often hide behind JavaScript-rendered tabs that AI crawlers can't parse. The fix is rendering them inline in the description body or in metafields that the theme outputs in initial HTML.

The verbatim instruction is from Shopify1. The Catalog reinforcement is from the optimization doc2. The implementation choice is between description-body inline rendering (works for all themes) and metafield-based rendering (works for themes that natively support metafield blocks in the PDP layout).

Where to put each field on Shopify

Three placement options, in descending order of universality. (1) Inline in the description body — works on every theme. (2) Metafields rendered by the theme via metafield blocks — works on themes that support custom metafield rendering. (3) Custom theme blocks with hardcoded sections — works but adds theme-customisation overhead.

PlacementCompatibilityBest for
Description body (inline)All themesUniversal — start here
Metafield renderingThemes with metafield block supportStores with > 100 SKUs and consistent fields
Custom theme blockCustom theme workBrand-specific PDP layouts

Theme-side blockers AI crawlers hit

Two common blockers. (1) Tab components that hide content under a click — JavaScript renders the content on user interaction, but AI crawlers fetch the initial HTML once and don't click. Content hidden in tabs may be invisible to AI. (2) Accordion components that lazy-render content — same problem. Both are common in 'product detail' themes.

Templates by category

Five category examples. Each shows the three fields (sizing, material, care) as structured blocks within the product description body. The pattern adapts to category — sizing is universal in apparel, material is universal in furniture, care is universal in skincare. Apply the relevant fields per category.

CategorySizing formatMaterial formatCare format
ApparelSize chart in cm/inches; fit guideFabric composition % + weight gsmWash temp + iron + dry-clean
FurnitureDimensions L×W×H; weightMaterial composition + finishCleaning + assembly
SkincareVolume ml; usage frequencyActive ingredients % + base ingredientsStorage + patch test
SupplementsServings per containerActive ingredient + form (powder/capsule/etc)Dosage + interactions
JewelrySize guide + chain lengthMetal + stone + platingCleaning + storage

Field placement checklist

Six checks per product. Most stores benefit from rendering these inline in the description body first; metafield rendering is the second-phase upgrade once the inline pattern is proven.

  1. Identify which of the three fields applies to this product category.
  2. Draft the structured block (sizing chart, material composition, care routine).
  3. Place the block inline in the description body (not in a tab or accordion).
  4. View page source. Confirm the block text appears in initial HTML.
  5. Open the PDP on mobile. Confirm the block reads cleanly without horizontal scroll.
  6. Test in ChatGPT: ask 'what's the material of [your product]' and confirm an accurate answer.