PrestaShop Documentation, PrestaShop Tutorials

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:

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

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

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

 

About zohaibk

We develop useful addons for #E-Commerce and #CRM software to provide extra features.#PrestaShop,#Magento,#SugarCRM,#Vtiger & #Android #apps
View all posts by zohaibk →