Hi,
Based on all the information I can see, the issue is that you selected a products listing menu item in the "menu" option of your module.
You should instead select a category listing menu item in that option as the categories listing modules only accept category listing menu items in that option.
I've actually pondered about that and I've made up a patch to allow the selection of products listing menu items in that option.
replace the code:
return hikashop_contentLink('category&task=listing&cid='.$cid->category_id.'&name='.$cid->alias.$this->menu_id,$cid);
by the line:
$type = 'category';
if(!empty($this->menu_id)){
$parts = explode('=',$this->menu_id);
$app = JFactory::getApplication();
$menus = $app->getMenu();
$menu = $menus->getItem($parts[1]);
if(!empty($menu) && !empty($menu->link) && strpos($menu->link,'option='.HIKASHOP_COMPONENT)!==false && (strpos($menu->link,'view=')===false || strpos($menu->link,'view=product')!==false)){
$type = 'product';
}
}
return hikashop_contentLink($type.'&task=listing&cid='.$cid->category_id.'&name='.$cid->alias.$this->menu_id,$cid);
in the file components/com_hikashop/views/category/view.html.php and that should do it.