Mobile app version of vmapp.org
Login or Join
Speyer207

: Google Rich Snippets read, but not recognized I put data on my page, required to make Google Rich Snippets. Page URL (for example) is view-source:http://vitocars.net/part/100225305. In Google Structure

@Speyer207

Posted in: #Google #RichSnippets

I put data on my page, required to make Google Rich Snippets.
Page URL (for example) is view-source:http://vitocars.net/part/100225305.

In Google Structure Data testing tool I can see this screen:



So, the price and availability is recognized, but anyway, not working.

Can anybody give advice to me, where to look?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Speyer207

1 Comments

Sorted by latest first Latest Oldest Best

 

@Jessie594

You need to ensure the price, review or availability markup is within the parent product schema as opposed to the offer details of item 1.

For example:-

<div itemscope itemtype="http://data-vocabulary.org/Product">
<span itemprop="brand">ACME</span> <span itemprop="name">Executive
Anvil</span>
<img itemprop="image" src="anvil_executive.jpg" />

<span itemprop="description">Sleeker than ACME's Classic Anvil, the
Executive Anvil is perfect for the business traveler
looking for something to drop from a height.
</span>
Category: <span itemprop="category" content="Hardware > Tools > Anvils">Anvils</span>
Product #: <span itemprop="identifier" content="mpn:925872">
925872</span>
<span itemprop="review" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">
<span itemprop="rating">4.4</span> stars, based on <span itemprop="count">89
</span> reviews
</span>

<span itemprop="offerDetails" itemscope itemtype="http://data-vocabulary.org/Offer">
Regular price: 9.99
<meta itemprop="currency" content="USD" />
$<span itemprop="price">119.99</span>
(Sale ends <time itemprop="priceValidUntil" datetime="2020-11-05">
5 November!</time>)
Available from: <span itemprop="seller">Executive Objects</span>
Condition: <span itemprop="condition" content="used">Previously owned,
in excellent condition</span>
<span itemprop="availability" content="in_stock">In stock! Order now!</span>
</span>
</div>


Notice how itemtype 'Product' contains itemprop 'Review`. You need to include one of these in the product itemtype.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme