Mobile app version of vmapp.org
Login or Join

Login to follow query

More posts by @Murray155

2 Comments

Sorted by latest first Latest Oldest Best

 

@Samaraweera270

As you are using data-vocabulary.org/Review-aggregate this is the correct format:

<div itemscope itemtype="http://data-vocabulary.org/Review-aggregate">
<span itemprop="itemreviewed">My item</span>
<span itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating">
<span itemprop="average">9</span>
out of <span itemprop="best">10</span>
</span>
based on <span itemprop="votes">5</span> ratings.
<span itemprop="count">5</span> user reviews.
</div>




Using meta:

<div itemscope itemtype="http://data-vocabulary.org/Review-aggregate">
<span itemprop="itemreviewed">My item</span>
<span itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating">
<meta itemprop="average" content="9" />
<meta itemprop="best" content="10" />
</span>
<meta itemprop="votes" content="5" />
<meta itemprop="count" content="5" />
</div>

10% popularity Vote Up Vote Down


 

@Kristi941

it should be

<meta itemprop="ratingValue" content="5">
<meta itemprop="bestRating" content="10">
<meta itemprop="worstRating" content="0">


respectively.

do comment to this answer if it still doesnt resolve.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme