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
Comment #1
ezra-g commentedThanks - Can you roll a patch for this?
Comment #2
quicksketchIf the display mode is "(Fivestar Stars (clickable, no text))", then no text should be displayed (including the labels). I think this is intentional.
Comment #3
ezra-g commentedThanks for the feedback quicksketch. This is by design
Comment #4
jshabel commentedSo 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?