Hello!
I have the same question (this same template as i see).
On the right i have manufacturer logo Brand:
When i click on the logo, is is enlarged, or site is blank .. :/
How can i change it, to redirect to all products of Brand / Manufacturer?
The code of this part is:
<!-- Brand -->
<div class="clearfix"></div>
<?php
if($this->config->get('manufacturer_display', 0) && !empty($this->element->product_manufacturer_id)){
$class = hikashop_get('class.category');
$manufacturer = $class->get($this->element->product_manufacturer_id, true);
global $Itemid;
$categoryClass = hikashop_get('class.category');
$categoryClass->addAlias($manufacturer);
?>
<span class="title"><?php echo JText::_('TPL_ITEM_PRODUCT_BRAND'); ?></span>
<div class="custom_brand_image">
<?php
echo '<a href="'.hikashop_contentLink('category&task=listing&cid='.$manufacturer->category_id.'&name='.$manufacturer->alias.'&Itemid='.$Itemid,$manufacturer).'">'.$this->image->display($manufacturer->file_path,false,$manufacturer->file_name, '', '', $this->image->main_thumbnail_x, $this->image->main_thumbnail_y).'</a>';
?>
</div>
<?php
}
?>
I hope it will not be a problem for you
Best Regards
Wojciech