Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>In fact in every row you have a bit different product (differs by diameter, length, etc). Ideally you should indicate this using <em>schema.org/Product</em> nested in <em>schema.org/Offer</em> and linked with general product information using <em>itemref</em>. Smth like this:</p> <pre><code>&lt;div id="product_general"&gt; &lt;h1 itemprop="name" &gt;Induweb spiraalboor, HSS, Rolgewalst, DIN 338, type N&lt;/h1&gt; &lt;/div&gt; &lt;div itemscope itemtype="http://schema.org/Offer"&gt; &lt;div itemprop="itemOffered" itemscope itemtype="http://schema.org/Product" itemref="product_general"&gt; &lt;span itemprop="model"&gt;Diameter: 1.0&lt;/span&gt; &lt;/div&gt; &lt;span itemprop="Price"&gt;€ 0,13&lt;/span&gt; &lt;/div&gt; </code></pre> <p>The issue here is that you're using <em>table</em> for specific product and offer information. It seems there is no way to make a construction above in your current design with valid html code. However this is not a big problem for you if you're looking more for Rich Snippets than for super correct markup.</p> <p>So your issue with Rich Snippets now is that highest price is not correct. <img src="https://i.stack.imgur.com/wniH4.png" alt="enter image description here"></p> <p>You can easily fight this using <em>schema.org/AggregateOffer</em>. In your current code (light version):</p> <pre><code>&lt;div class="wrapper product-view" itemscope itemtype="http://schema.org/Product"&gt; &lt;h1 itemprop="name" id="product_name"&gt;Induweb spiraalboor, HSS, Rolgewalst, DIN 338, type N&lt;/h1&gt; &lt;img itemprop="image" src="http://induweb.nl/media/catalog/product/cache/1/image/185x/5e06319eda06f020e43594a9c230972d/import/Verspanen/Boren/Cylindrische schacht/100000002-induweb-spiraalboor-hss-rolgewalst-din-338-type-n_0/induweb.nl--100000002-30.jpg" alt="Induweb spiraalboor, HSS, Rolgewalst, DIN 338, type N" title="Induweb spiraalboor, HSS, Rolgewalst, DIN 338, type N" /&gt; &lt;table&gt;&lt;tr&gt;&lt;td itemprop="brand"&gt;InduWeb&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt; &lt;div itemprop="description"&gt; &lt;p&gt;&amp;middot; Rolgewalst &lt;br /&gt;&amp;middot; Cilinderschacht &lt;br /&gt;&amp;middot; Rechtssnijdend &lt;br /&gt;&amp;middot; Kegelmantelgeslepen 118&amp;deg; &lt;br /&gt;&amp;middot; Zwarte uitvoering&lt;/p&gt; &lt;/div&gt; &lt;!-- Put http://AggregateOffer here with high and low price properties--&gt; &lt;div itemprop="offers" itemscope itemtype="http://schema.org/AggregateOffer"&gt; &lt;meta itemprop="lowPrice" content="€ 0,13"&gt; &lt;meta itemprop="highPrice" content="€ 1.75"&gt; &lt;meta itemprop="offerCount" content="98"&gt; &lt;/div&gt; &lt;!-- End of AggregateOffer--&gt; &lt;table&gt; &lt;tr itemscope itemtype="http://schema.org/Offer" itemprop="offers"&gt; &lt;td itemprop="sku"&gt; &lt;div class="shipping shipping-176" itemprop="availability" content="in_stock"&gt;&lt;/div&gt; 100010006 &lt;/td&gt; &lt;!-- Start sub attributen --&gt; &lt;!-- --&gt; &lt;td class="a-center"&gt;1.0&lt;/td&gt; &lt;!-- --&gt; &lt;td class="a-center"&gt;34&lt;/td&gt; &lt;!-- --&gt; &lt;td class="a-center"&gt;12&lt;/td&gt; &lt;!-- Einde sub attributen --&gt; &lt;td class="a-center" style="width: 25px;"&gt;&lt;p&gt;10&lt;/p&gt;&lt;/td&gt; &lt;td&gt; &lt;span itemprop="price"&gt; &lt;span class="price"&gt;€ 0,13&lt;/span&gt; &lt;/span&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; </code></pre> <p>Although it's not semantically super correct but it will give pretty good result:</p> <p><img src="https://i.stack.imgur.com/QtP8U.png" alt="enter image description here"></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload