Got it 👍 Let’s break this down step by step for PrestaShop Schema JSON, Google’s testing/validation tools, and Search Console.
1. PrestaShop Schema JSON
In PrestaShop, schema markup (JSON-LD) helps Google understand your products, categories, events, etc. Common schemas you can add:
- Product Schema (most important for e-commerce):
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Product",
"name": "Sample Product Name",
"image": {
"@type": "ImageObject",
"url": "https://yourstore.com/img/product.jpg"
},
"description": "Short product description.",
"sku": "SKU12345",
"brand": {
"@type": "Brand",
"name": "Brand Name"
},
"offers": {
"@type": "Offer",
"url": "https://yourstore.com/product-url",
"priceCurrency": "INR",
"price": "999.00",
"availability": "https://schema.org/InStock"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.5",
"reviewCount": "28"
}
}
</script>
👉 You can inject this in product.tpl
or use a PrestaShop module (many schema/SEO modules exist).
2. Google Testing & Validation Tools
Google provides two main tools to check your schema:
- Rich Results Test
- Shows if your schema is eligible for rich snippets (stars, prices, FAQs, etc.).
- Schema Markup Validator
- Pure schema validation (checks correctness of JSON-LD, Microdata, RDFa).
🔍 Paste your product URL (or raw JSON) there and see if Google parses it correctly.
3. Google Search Console
After schema is live and Google indexes your page:
- Go to Search Console → Enhancements (left sidebar).
- You’ll see categories like Products, FAQs, Breadcrumbs, Events, depending on your schema.
- If schema is correct → Google shows “Valid” with green check.
- If errors → Google lists missing/invalid fields (e.g., missing
priceCurrency
,image
, etc.). - You can request re-indexing after fixing errors.
⚡ Tip: Rich results aren’t guaranteed, even with correct schema. Google decides when to show them.
✅ Workflow for you in PrestaShop:
- Add JSON-LD schema to product pages.
- Validate with Rich Results Test.
- Monitor in Search Console → Enhancements.