There is an error in the fivestar.module file on line 1771. The current code is:
'labels' => $summary ? variable_get('fivestar_labels_'. $node_type, array()) : array(),
It should read:
'labels' => variable_get('fivestar_labels_'. $node_type, array()),

This change would allow custom labels to be applied to ratings in all cases when available, rather than utilizing default labels when the text is hidden.

Comments

ezra-g’s picture

Thanks - Can you roll a patch for this?

quicksketch’s picture

If the display mode is "(Fivestar Stars (clickable, no text))", then no text should be displayed (including the labels). I think this is intentional.

ezra-g’s picture

Status: Needs review » Closed (works as designed)

Thanks for the feedback quicksketch. This is by design

jshabel’s picture

So the design is to have the default ratings appear over the images when moused over as tooltips and as alt text when there are entered custom ratings?