Hi hawkeyentjc,
Most helpful && Highest rating is the same thing, and latest comment is like date.
To do this, you will have to edit the file "yourSite/components/com_hikashop/views/vote/view.html.php" and in the function "listing()" add a variable like:
$sort_comments = JRequest::getString('sort_comment','');
if($sort_comments == "date"){
$order = ' ORDER BY `vote_date` ASC';
}else if($sort_comments == "helpful"){
$order=' ORDER BY `vote_useful` DESC, `vote_date` ASC';
}
After the lines:
if($vote_comment_sort == "date"){
$order = ' ORDER BY `vote_date` ASC';
}
And edit the view "vote / listing" in the frontend to add a single dropdown which display the 2 possibilities and reload the page when the user select one of these option and set the variable $sort_comments to "date" or "helpful".