It's been more than 4 months that our rich snippets suddenly disappeared, some error were reported in GWT, i corrected everything and errors are now decreasing (only 5 left). here is my code:
<section class="c-center" itemscope itemtype="http://schema.org/Product">
<div>
<h1><span itemprop="name">Product name</span> <span itemprop="brand" class="brand"><a href="/link-to-brand/">Brand of product</a></span></h1>
<div id="reviews" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
<div class="rating">
<meta itemprop="ratingValue" content="4.8" />
<meta itemprop="ratingCount" content="56" />
<div class="fill" style="width:96%"></div>
<div class="stars"></div>
</div>
<div class="rating-info">
<a href="#ratings-reviews">Based on 56 reviews</a> - <a href="#">Write a review</a>
</div>
</div>
</div>
<div id="img">
<img src="/link-to-image.jpg" alt="Img alt" itemprop="image" />
</div>
<div id="info">
<meta itemprop="url" content="site.com/link-of-product/">
<div id="price-container" itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<meta itemprop="priceCurrency" content="EUR">
<meta itemprop="gtin13" content="1234567899999">
<span class="price" itemprop="price">19,95 €</span> <del>28,50 €</del> -
<span class="stock"><link itemprop="availability" href="http://schema.org/InStock">Available</span>
</div>
</div>
</section>
here are my questions:
1- is there anything wrong?
2- I've seen in many posts that currency should not be in the itemprop="price"
but in google examples, they do include it! what should I do?
3- should I use ratingCount
or reviewCount
?
4- some products exist in different sizes with different prices, is it recommended to include the AggregateOffer
with lowest and highest price?
Thanks a lot
Regarding the aggregate offers, i saw it on this page: [link](https://developers.google.com/structured-data/rich-snippets/products) i have manually fetched different URLs, but they still dont show within google results page :( the syntax and all the code is correct. I now have only 2 errors left on GWT, i'll wait until i have no more errors and hope all will get back to normal! – Websphere Sep 27 '15 at 21:28