0

I am looking to include rich snippets into a site I'm building for a customer. The customer requested this because he wants his organic search results to show his review stars.

I have read some blog posts about Rich Snippets but none of them show or tell me what to actually change in the source code for those review stars to show up in Google.

I've got the following data at my disposal:

  • Company name
  • Site name
  • Review Average
  • Total Reviews

To add upon my story (in hopes of making it more clear):

I'm working on a webshop. Let's call it example.com. After customers made a purchase in the webshop they receive an email asking them if they want to rate the webshop. My client wants those ratings (stars) visible in the organic search results. I've learned that rich snippets are required to do this. What I do not understand however is how these rich snippets should look, where I need to place them, and especially. What type of rich snippet I need to do this.

Peter
  • 8,776
  • 6
  • 62
  • 95

2 Answers2

2

Google documents their Rich Snippets. For your case:

The examples still use the inactive vocabulary Data-Vocabulary.org, but as explained in the header, you probably want to use the vocabulary Schema.org now.

The relevant Schema.org types would be:

You can use the vocabulary Schema.org with different syntaxes. For marking up visible content on webpages, you’ll probably want to use Microdata or RDFa (see my answer about their differences).

For checking your structured data, you can use Google’s Testing Tool.

Community
  • 1
  • 1
unor
  • 92,415
  • 26
  • 211
  • 360
  • The Rich Snippet types you are talking about, are they for product or site reviews? – Peter Jan 07 '15 at 08:46
  • @Peter: I don’t think that Google distinguishes here. On [Reviews](https://support.google.com/webmasters/answer/146645?hl=en) they say: "You can mark up either individual reviews (for example, an editor's review of a product), or aggregate review information—for example, the average rating for a local business or the total number of user reviews submitted." – unor Jan 07 '15 at 10:59
  • The second one you mention is the one I need I guess. Have you got an example on how to mark it up? – Peter Jan 07 '15 at 11:16
  • @Peter: On the linked documentation, Google shows some "aggregate review" examples using Microdata syntax and the Data-vocabulary.org vocabulary (you’d have to replace the type/property URLs with those from Schema.org, they are often named identical/similar). On Schema.org’s [`AggregateRating`](http://schema.org/AggregateRating), you can find 4 examples on the end of the page. – unor Jan 08 '15 at 16:53
1

You have to manipulate your code for do that.
The full reference can be founded here http://schema.org
and the section for Aggregate Rating is here http://schema.org/AggregateRating

When you're done, you can test your work with the google tool here https://www.google.com/webmasters/tools/richsnippets

Hope it helps

Community
  • 1
  • 1
ilSavo
  • 854
  • 1
  • 8
  • 28