Site icon PrestaShop | Magento | CRM Modules

PrestShop Schema JSON, Google Testing tool and Search Console

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:

<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:

🔍 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:

⚡ Tip: Rich results aren’t guaranteed, even with correct schema. Google decides when to show them.


✅ Workflow for you in PrestaShop:

  1. Add JSON-LD schema to product pages.
  2. Validate with Rich Results Test.
  3. Monitor in Search Console → Enhancements.

 

Exit mobile version