Rich Cards (JSON-LD)

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
6 years ago
Using this plugin you will be able to add JSON-LD structured data snippet on your site. It's very easy. Install plugin and try.

Not registered version is fully operational. It has only one limitation. Plugin has 15 days trial period. Try before buying.

Compatible with NopCommerce 3.90 and never.

Link to our site https://www.foxnetsoft.com/noprichcards.


Example

1. Home page

<script type="application/ld+json">
{
    "@context": "http://schema.org/",
    "@type": "Organization",
    "name": "Your store name",
    "url": "http://demo390.yourstore.com/",
    "sameAs": [
        "http://www.facebook.com/nopCommerce",
        "https://twitter.com/nopCommerce",
        "https://plus.google.com/+nopcommerce",
        "http://www.youtube.com/user/nopCommerce"
    ],
    "potentialAction": [{
        "@type": "SearchAction",
        "target": "http://demo390.yourstore.com/search?q={search_term_string}",
        "query-input": "required name=search_term_string"
    }]
}
</script>



2. Category page

<script type="application/ld+json">
{
    "@context": "http://schema.org/",
    "@type": "BreadcrumbList",
    "itemListElement": [
    {
     "@type": "ListItem",
     "position":"1",
     "item": {
         "@id":"http://demo390.yourstore.com/computers",
         "name":"Computers"
       }
    },
    {
     "@type": "ListItem",
     "position":"2",
     "item": {
         "@id":"http://demo390.yourstore.com/notebooks",
         "name":"Notebooks"
       }
    }
    ]
}
</script>



3. Product page

<script type="application/ld+json">
{
    "@context": "http://schema.org/",
    "@type": "Product",
    "aggregateRating": {
        "@type": "AggregateRating",
        "worstRating": "1",
        "bestRating": "5",
        "ratingValue": "4",
        "ratingCount": "2",
        "reviewCount": "2"
    },
    "name": "Apple MacBook Pro 13-inch",
    "image": "http://demo390.yourstore.com/content/images/thumbs/w_1_0000024_apple-macbook-pro-13-inch_550.jpeg",
    "description": "With fifth-generation Intel Core processors, the latest graphics, and faster flash storage, the incredibly advanced MacBook Pro with Retina display moves even further ahead in performance and battery life.* *Compared with the previous generation.Retina display with 2560-by-1600 resolutionFifth-generation dual-core Intel Core i5 processorIntel Iris GraphicsUp to 9 hours of battery life1Faster flash storage2802.11ac Wi-FiTwo Thunderbolt 2 ports for connecting high-performance devices and transferring data at lightning speedTwo USB 3 ports (compatible with USB 2 devices) and HDMIFaceTime HD cameraPages, Numbers, Keynote, iPhoto, iMovie, GarageBand includedOS X, the world's most advanced desktop operating system",
    "brand": {
        "@type": "Thing",
        "name": "Apple"
    },
    "offers": {
        "@type": "Offer",
        "priceCurrency": "USD",
        "price": "1800.00",
        "availability": "http://schema.org/InStock",
    "seller": {
           "@type": "Organization",
           "name": "Your store name",
           "url": "http://demo390.yourstore.com/"
       }    },
    "review": [
         {
            "@type": "Review",
            "author": "John",
            "datePublished": "2017-03-15",
            "reviewBody": "This sample review is for the Apple MacBook Pro 13-inch. I've been waiting for this product to be available. It is priced just right.",
            "name": "Some sample review",
            "reviewRating": {
               "@type": "Rating",
               "ratingValue": "4"
             }
         },
         {
            "@type": "Review",
            "author": "John",
            "datePublished": "2017-03-17",
            "reviewBody": "fghfghfghfghfg",
            "name": "456456",
            "reviewRating": {
               "@type": "Rating",
               "ratingValue": "5"
             }
         }
    ]
}
</script>
<script type="application/ld+json">
{
    "@context": "http://schema.org/",
    "@type": "BreadcrumbList",
    "itemListElement": [
     {
     "@type": "ListItem",
     "position":"1",
     "item": {
         "@id":"http://demo390.yourstore.com/computers",
         "name":"Computers"
       }
     },
     {
     "@type": "ListItem",
     "position":"2",
     "item": {
         "@id":"http://demo390.yourstore.com/notebooks",
         "name":"Notebooks"
       }
     }
    ]
}
</script>
6 years ago
Added support 4.00.
5 years ago
Added support 4.10.
5 years ago
Added support 3.80.
4 years ago
Added support 4.20.
3 years ago
Added support 4.30.
3 years ago
Added support nop 4.40.
2 years ago
Added support nop 4.50.
1 year ago
Added support nop 4.60.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.