Hi,
Could you try to change the code:
$url = hikashop_completeLink('category&task=listing&Itemid='.$this->params->get('itemid',0));
by:
$menuClass = hikashop_get('class.menus');
$menuData = $menuClass->get($this->params->get('itemid',0));
$type = 'category';
if(@$menuData->hikashop_params['content_type']=='product'){
$type = 'product';
}
$url = hikashop_completeLink($type.'&task=listing&Itemid='.$this->params->get('itemid',0));
in the file "filter" of the view "product" via the menu Display->Views.
That should help.