Schema.org problems (still)
-
Hey Mozzers,
I've been working at this for a while now, and I can't figure out why the rich snippet data is not getting pulled for our reviews and product rating. I've included a sample URL where we have reduced the schema.org markup:
http://www.tripcentral.ca/vacations-packages_00_03_JN_gran-bahia-principe-coba.html
| } |
Any thoughts? I was told not to list multiple reviews, so I took them out. But it's still not being picked up in the SERPs, and we would really like the star rating data to appear.
Any useful advice would be appreciated!
-
Have a look at: https://developers.google.com/structured-data/testing-tool/
Your page only has "hotel, product, and breadcrumb list", this should help you: https://developers.google.com/structured-data/rich-snippets/reviews
-
Right now I am just focusing on getting the product rating up. Here is the code I am going to try:
Dreams Tulum
A beautiful resort, dream weddings and amazing staff.
Hotel rating:
5 out of
5 with
8 ratingsI am trying to go to the basics here- I think this looks correct?
-
Could it be because we are using JSON that the rich snippet data is not being pulled?
-
This post is deleted! -
Are you including the itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" somewhere else?
Also, I think with products you need to wrap it all in a div with itemtype="http://schema.org/Product"
-
I've corrected the brackets with our dev, but it's still not pulling up.
Here is the change we made to the code:
| "@context": "http://schema.org", |
| | "@type": "BreadcrumbList", |
| | "itemListElement": [ |
| | { |
| | "@type": "ListItem", |
| | "position": 1, |
| | "item": { |
| | "@id": "http://www.tripcentral.ca", |
| | "name": "Home" |
| | } |
| | },{ |
| | "@type": "ListItem", |
| | "position": 2, |
| | "item": { |
| | "@id": "http://www.tripcentral.ca/vacations-packages_index.html", |
| | "name": "Vacations Packages" |
| | } |
| | },{ |
| | "@type": "ListItem", |
| | "position": 3, |
| | "item": { |
| | "@id": "http://www.tripcentral.ca/vacations-packages_mexico.html", |
| | "name": "Mexico" |
| | } |
| | },{ |
| | "@type": "ListItem", |
| | "position": 4, |
| | "item": { |
| | "@id": "http://www.tripcentral.ca/vacations-packages_mayan-riviera-maya.html", |
| | "name": "Mayan Riviera-Maya" |
| | } |
| | }] |
| | } |I went through with the dev team and its passing the testing tool.
Is there anything else I could be missing?
-
I haven't had any trouble using JSON-LD for organizations and people. I have only used in-line product schema so far for products. You could try adding the in-line markup if you haven't already, and leaving the JSON-LD script up.
-
This post is deleted!