i think there is something wrong in the product/listing.php template. this code:
<div id="<?php echo $this->params->get('main_div_name');?>" class="hikashop_category_information hikashop_products_listing_main">
<?php
if(version_compare(JVERSION,'1.6','<')){
$title = 'show_page_title';
}else{
$title = 'menu_text';
}
if($this->module){
$title = 'showtitle';
}
if($this->params->get($title) && JRequest::getVar('hikashop_front_end_main',0) && (!$this->module || $this->pageInfo->elements->total)){
$name = $this->params->get('page_title');
if(($this->module)){
$name = $this->params->get('title');
}
?>
<h1>
<?php echo $name; ?>
</h1>
does not even show the h1 tags. further $name is an empty value. if i insert above the container div a head tag.. it shows it for both the main product listing and then repeats it again for the submodule section.