Hi,
We've had a closer look at the problem.
It seems to come from the call to SEF system by the search system.
Change the code:
if(empty($row->product_canonical)){
$rows[$k]->href = 'index.php?option=com_hikashop&ctrl=product&task=show&name='.$row->alias.'&cid='.$row->id.$Itemid.$parent;
}else{
$rows[$k]->href = $row->product_canonical;
}
to:
if(empty($row->product_canonical)){
$rows[$k]->href = JRoute::_('index.php?option=com_hikashop&ctrl=product&task=show&name='.$row->alias.'&cid='.$row->id.$Itemid.$parent);
}else{
$rows[$k]->href = $row->product_canonical;
}
$rows[$k]->href = hikashop_cleanURL($rows[$k]->href);
in the file plugins/search/hikashop_products/hikashop_products.php in order to bypass the SEF call from the search system and that should work properly