Yes, that's the option.
So now it's displaying the title of the menu. But what you would like is that it displays the title of the page, which is not the case anymore.
The modifications are not small to do that... You need to change the code
$title = $this->params->get('page_title');
$document =& JFactory::getDocument();
if((empty($title) && !empty($element->category_name)) || !$this->params->get('use_module_name')){
$this->params->set('page_title',strip_tags(@$element->category_name));
}
if(!empty($element->category_keywords)){
$document->setMetadata('keywords', $element->category_keywords);
}
if(!empty($element->category_meta_description)){
$document->setMetadata('description', $element->category_meta_description);
}
$use_module = $this->params->get('use_module_name');
if(!empty($use_module)){
$document->setTitle($this->params->get('title'));
}else{
$document->setTitle($this->params->get('page_title'));
to:
$use_module = $this->params->get('use_module_name');
$title = $this->params->get('page_title');
if(empty($title)){
$title = $this->params->get('title');
}
if(empty($use_module) && !empty($element->category_name)){
$title = $element->category_name;
}
$this->params->set('page_title',$title);
$document =& JFactory::getDocument();
if(!empty($element->category_keywords)){
$document->setMetadata('keywords', $element->category_keywords);
}
if(!empty($element->category_meta_description)){
$document->setMetadata('description', $element->category_meta_description);
}
$document->setTitle(strip_tags($title));
in components/com_hikashop/views/category/view.html.php
and:
$use_module = $this->params->get('use_module_name');
if(!$this->module && !empty($use_module)){
$name = $this->params->get('title');
}else{
$name = $this->params->get('page_title');
}
to:
$name = $this->params->get('page_title');
in the file components/com_hikashop/views/category/tmpl/listing.php
We'll include the modifications for next version.