1. Then please try with another browser. Maybe some kind of issue with your user session.
3. You configured your brands module so that it is displayed as an associated module of your menu.
We actually didn't think of that possibility and in that case, the title has to be displayed by HikaShop.
You will have to edit the file "listing" of the view "category" of your frontend template via the menu Display->Views and change the code:
$heading = $this->params->get('page_title');
if($this->params->get('page_heading')){
$heading = $this->params->get('page_heading');
}
to:
if($this->module){
$heading = $this->params->get('title');
}else{
$heading = $this->params->get('page_title');
if($this->params->get('page_heading')){
$heading = $this->params->get('page_heading');
}
}
and then you should see the title.