Hi Nicolas,
I removed the Show_Default customization that I made, but when I did that I did not see the Brand Name like you suggested, maybe I'm misunderstanding.
So I looked at the show_block_dimensions.php file that you suggested and tried to figure out how to get it to work but I keep getting errors so I'm not sure what I'm doing wrong. Below is the code for the Brand Name that I had found on the Forum some time back that I'm using on the page.
<h1 class="product-brand-details">
<?php $class = hikashop_get('class.category');
$manufacturer = $class->get($this->element->product_manufacturer_id);
echo $manufacturer->category_name; ?>
</h1>
This is the code in the show_block_dimensions.php that I believe you are referring to.
<?php
}
if($this->config->get('manufacturer_display', 0) && !empty($this->element->product_manufacturer_id)){
$categoryClass = hikashop_get('class.category');
$manufacturer = $categoryClass->get($this->element->product_manufacturer_id);
if($manufacturer->category_published){
$menuClass = hikashop_get('class.menus');
$Itemid = $menuClass->loadAMenuItemId('manufacturer','listing');
if(empty($Itemid)){
$Itemid = $menuClass->loadAMenuItemId('','');
}
$categoryClass->addAlias($manufacturer);
echo JText::_('MANUFACTURER').': '.'<a href="'.hikashop_contentLink('category&task=listing&cid='.$manufacturer->category_id.'&name='.$manufacturer->alias.'&Itemid='.$Itemid,$manufacturer).'">'.$manufacturer->category_name.'</a>';
echo "<span style='display:none;' itemprop='brand'>". $manufacturer->category_name ."</span>";
}
}
Thanks!