This is the community forum. For a developer response use the Client Area.
Follow us on Facebook, Twitter and YouTube!

more star rating features ?
#1

Hello,

I really like the commentics script (i dont use it yet)

I wonder if there is a possibilty for a more advanced rating system, first of all by clicking stars instead of a text menu. Example bol.com:

[Image: stars.jpg]

second a 3 way star system for example "quality" and "service" and "other" wich 3 calculate an average that is added to the comment. Example allebedrijvenin.nl

[Image: stars2.jpg]

That gives the rate more trust than only round numers because the avarage can be 7,8.
Reply
#2

I intergrated the commentics today, works great. A searchengine will show only the page where the stars are on (in my case the review page)

Is it possible to show only the average stars on another page? like the homepage, so this page is showed in search engine with stars.
Reply
#3

Please check this post:

http://www.commentics.org/forum/showthre...172&page=2 ,
"Average star rating feed with Google Rich Snippets stars in search results.".

It is working well, example is at "www.moto-skiro.si" . Stars rating feed is pulling data from comments page "www.moto-skiro.si/komentarji-ocene-go-ped.php?cmtx_page=1" .

You can see result on Google, querry is: "site:moto-skiro.si" . Example is "www.moto-skiro.si/akumulatorski-skiroji-10.html". This page has got stars with separate stars rating feed.

lp, stariocek
Reply
#4

Thanks i will read this tread soon.

At the first look i see the stars behind a number of your child pages but not behind the homepage, that's the thing i want: stars behind the home URL.
Reply
#5

The Big One decides to show/give or not to show/give stars in search results.

Moto-skiro has got linked star rating feeds WITH MICROFORMATS MARKUP on about ten main pages - index.html and first level sub-pages. And google gave stars to about one half of them. Without any reason, known to me.

Other pages on site moto-skiro, third and fourth level, have got stars feed shown WITHOUT markup. Stars are there, but mean nothing to google.
Reply
#6

(18-Dec-2012, 12:21 PM)stariocek Wrote:  The Big One decides to show/give or not to show/give stars in search results.

Moto-skiro has got linked star rating feeds WITH MICROFORMATS MARKUP on about ten main pages - index.html and first level sub-pages. And google gave stars to about one half of them. Without any reason, known to me.

Other pages on site moto-skiro, third and fourth level, have got stars feed shown WITHOUT markup. Stars are there, but mean nothing to google.

Thanks!

Another question, why can i only see "votes" behind the stars. In the example in the rich snippets menu of commetics i see "reviews". On google i see some page's have both "rating" and "vote's" or "reviews"
Reply
#7

(03-May-2012, 06:56 PM)stariocek Wrote:  <div class="hreview-aggregate" itemtype="http://schema.org/AggregateRating" itemscope itemprop="reviews">

<span class='permalink'>
<a rel='self bookmark' class='gtg' title='XXX xxx' href='/comments-page.php?cmtx_page=1'><b>Comments and ratings</b></a>
</span>

<meta content='5' itemprop='bestRating' />

<span class="item">
<span class="fn">XXX xxx yyy zzz uuu vvv www.</span>
</span>

<span class='rating'>
<img src='/slike/star_full.png' title='1 out of 5 (5)' alt='Full Star' class='stv' />
<img src='/slike/star_full.png' title='2 out of 5 (5)' alt='Full Star' class='stv' />
<img src='/slike/star_full.png' title='3 out of 5 (5)' alt='Full Star' class='stv' />
<img src='/slike/star_full.png' title='4 out of 5 (5)' alt='Full Star' class='stv' />
<img src='/slike/star_full.png' title='5 out of 5 (5)' alt='Full Star' class='stv' />

<span class='average' itemprop='ratingValue'> 5</span>
(
<span class='votes' itemprop='ratingCount'>3</span>
)
</span>

</div>

Do i need this code (copy from the topic you linked to).
What do i need to change ?
Reply
#8

I think that we're talking about 3 Rich Snippets (R. S.) structures now:

1) R. S. reviews, *** implemented in Commentics

2) R. S. separate star rating feed, *** linked to origin, Commentics reviews ("Average star rating feed with Google Rich Snippets stars in search results" on http://www.commentics.org/forum/showthre...172&page=2)

3) R. S. votes, *** example is voting with clickable stars on "www.moto-skiro.si/skiro-trail-ripper-interceptor.html"

----------

1) is implemented in Commentics, out of the box.

2) is using Commentics star images, database and is custom made solution. It is like this: "http://www.commentics.org/forum/showthread.php?tid=315", or equiped with Reach Snippets code, like this: "Average star rating feed with Google Rich Snippets stars in search results" in page http://www.commentics.org/forum/showthre...172&page=2.

3) is improved, modified and extended code from http://masugadesign.com/software/unobtru...ating-bar/ (very simpatic one, great thanks to MASUGA web design).

I've prepared 2) and 3) for my needs.

lp, stariocek
Reply
#9

(19-Dec-2012, 08:54 PM)m1155 Wrote:  
(03-May-2012, 06:56 PM)stariocek Wrote:  <div class="hreview-aggregate" itemtype="http://schema.org/AggregateRating" itemscope itemprop="reviews">

<span class='permalink'>
<a rel='self bookmark' class='gtg' title='XXX xxx' href='/comments-page.php?cmtx_page=1'><b>Comments and ratings</b></a>
</span>

<meta content='5' itemprop='bestRating' />

<span class="item">
<span class="fn">XXX xxx yyy zzz uuu vvv www.</span>
</span>

<span class='rating'>
<img src='/slike/star_full.png' title='1 out of 5 (5)' alt='Full Star' class='stv' />
<img src='/slike/star_full.png' title='2 out of 5 (5)' alt='Full Star' class='stv' />
<img src='/slike/star_full.png' title='3 out of 5 (5)' alt='Full Star' class='stv' />
<img src='/slike/star_full.png' title='4 out of 5 (5)' alt='Full Star' class='stv' />
<img src='/slike/star_full.png' title='5 out of 5 (5)' alt='Full Star' class='stv' />

<span class='average' itemprop='ratingValue'> 5</span>
(
<span class='votes' itemprop='ratingCount'>3</span>
)
</span>

</div>

Do i need this code (copy from the topic you linked to).
What do i need to change ?

Yes, this is a way to create separate star rating feed, linked to data origin - Commentics comments or reviews. What you need is PHP script to pull data from database and draw stars, equiped with complete Rich Snippets and HTML structure. Quoted code is symbolic.
Reply
#10

(19-Dec-2012, 07:32 PM)m1155 Wrote:  
(18-Dec-2012, 12:21 PM)stariocek Wrote:  The Big One decides to show/give or not to show/give stars in search results.

Moto-skiro has got linked star rating feeds WITH MICROFORMATS MARKUP on about ten main pages - index.html and first level sub-pages. And google gave stars to about one half of them. Without any reason, known to me.

Other pages on site moto-skiro, third and fourth level, have got stars feed shown WITHOUT markup. Stars are there, but mean nothing to google.

Thanks!

Another question, why can i only see "votes" behind the stars. In the example in the rich snippets menu of commetics i see "reviews". On google i see some page's have both "rating" and "vote's" or "reviews"

Ah Ja ... please, excuse me ... I'm sleepy Big GrinBig GrinBig Grin.

"Votes" means (in Google Rich Snippets terms) number of votes printed on page without reviews present (on page). Examples: voting by clicking stars, or separate star rating feed, we're talking about (Commentics is on other page).

"Reviews" means (for The Big One) page with reviews AND summary votes number. So reviews can be described (in Google terms) as "Reviews = Votes number printed + comments/reviews exist on same page".

lp, stariocek
Reply


Possibly Related Threads…
Thread / Author Replies Views Last Post
Last Post by Steven
17-Apr-2013, 06:16 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)