Hi,
Thanks for your report. It has been corrected, and will be in the next release.
To fix it:
In HikaShop > Display > Views, Edit the view "product / show_default.php"
And replace:
$js = '';
$params = null;
echo hikashop_getLayout('vote', 'form', $params, $js);
By:
$js = '';
if(isset($this->element->main)){
$product_id = $this->element->main->product_id;
}else{
$product_id = $this->element->product_id;
}
$this->params->set('product_id',$product_id);
echo hikashop_getLayout('vote', 'form', $this->params, $js);
In the divs: "hikashop_product_vote_listing" and "hikashop_product_vote_form"
And edit the file:
YourSite\components\com_hikashop\views\vote\view.html.php
And replace:
$hikashop_vote_product_id = hikashop_getCID('product_id');
By:
if(!empty($this->params)){
$hikashop_vote_product_id = $this->params->get('product_id');
}