Есть галерея, которую должны оценивать судьи и пользователи(оценка "зрительские симпатии"). Соответсвенно, по смыслу, это два блока fivestar, что не предусмотрено этим модулем (буквально вчера, правда, появился dev-билд который умеет). Нашел на этом же форуме вот такой сниплет:
<?php
$nid = arg(1);
$output = '';
$tags = array(
'Rate' => t('Rate'),
'Symphaty' => t('Symphaty'),
);
foreach ($tags as $tag => $title) {
$votes = fivestar_get_votes('node', $nid, $tag);
$values = array(
'user' => isset($votes['user']['value']) ? $votes['user']['value'] : NULL,
'average' => isset($votes['average']['value']) ? $votes['average']['value'] : NULL,
'count' => isset($votes['count']['value']) ? $votes['count']['value'] : NULL,
);
if (user_access('rate content')) {
$settings = array(
'stars' => 10,
'allow_clear' => TRUE,
'style' => 'average',
'text' => 'dual',
'content_type' => 'node',
'content_id' => $nid,
'tag' => $tag,
'autosubmit' => TRUE,
'title' => $title,
'feedback_enable' => TRUE,
'labels_enable' => TRUE,
'labels' => array(t('Poor'), t('Okay'), t('Good'), t('Great'), t('Awesome')),
);
$output .= drupal_get_form('fivestar_custom_widget', $values, $settings);
} else {?>