if you want to rank on anything other than overall (i.e. a single field) according to the docs “orderby="some_custom_rating_field"
in the module on line 766 your only options seem to be overall_count, sum and avg.
I hacked it below to add my two rating fields, obviously a poor hack but it works for me right now....
$q = array(
‘overall_count’ => ‘count’,
‘overall_sum’ => ‘sum’,
‘overall_avg’ => ‘avg’,
‘rating_avg’ => ‘avg_2’, // hack; added
‘rating2_avg’ => ‘avg_3’ // hack; added
);
-kevin
