Hi,
Please edit the file components/com_hikashop/views/product/view.html.php
You would find the part of code
}else{
$pageInfo->limit->value = $this->params->get('limit');
$pageInfo->limit->start = 0;
}
if($pageInfo->limit->value <= 0)
$pageInfo->limit->value = 1;
}else{
$doc = JFactory::getDocument();
$pageInfo->filter->cid = JRequest::getInt("cid",$this->params->get('selectparentlisting'));
In this part of code, you have to change the line
if($pageInfo->limit->value <= 0)
To:
if($pageInfo->limit->value < 0)
This modification would be include in the next HikaShop package.
Regards,