Hi, the theme uses Google Rich Snippets, which works fine.
But when a product is on sale, then the Rich Snippet Validator (http://www.google.com/webmasters/tools/richsnippets) throws an error: “Incomplete microdata with schema.org.”
The sourcecode looks as following, where the error seems to be in itemprop=”price”:
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<p itemprop="price" class="price"><del><span class="amount">10 €</span></del> <ins><span class="amount">8 €</span></ins> <small class="woocommerce-price-suffix">(Includes VAT)</small></p>
<meta itemprop="priceCurrency" content="EUR" />
<link itemprop="availability" href="http://schema.org/InStock" />
</div>
Additionally, is it possible to exclude the availability information, as I’m having digital products only. I tried to remove the line from woocommerce/single-product/price.php, once in my child theme and once in the original, but without success.
Thanks!