-- HikaShop version -- : 4.4.1
-- Joomla version -- : 3.9.25
-- PHP version -- : 7.3.5
Hi
when send a vote(vote and comment sync) as guest user, your request doesn't have any response in network tab
and where is problem?
in vote class at path:
administrator/components/com_hikashop/classes/vote.php in line 364 if $count equal zero then $data->product_average_score will equal NaN
this problem can solve by a small trick, in line 365 replace with this:
$data->product_average_score = is_nan($sum / $count) ? 0 : $sum / $count;
I hope helped to Hika a little