Some PHP coder need to help in a simple feature:
I want to add Product Brand name in my product listing. I tried some tweak in file list_img_desc.php but I finally accepted that my PHP knowledge is too poor to keep trying forever...
I cloned <!-- PRODUCT NAME --> piece of code and tried several 'mutations' but the best I got is the brand code itself, but not it's name.
Please bring some light to the project
<!-- PRODUCT BRAND -->
<span class="hikashop_product_name">
<?php if($this->params->get('link_to_product_page',1)){ ?>
<a href="<?php echo $link;?>">
<?php } ?>
<?php
echo $this->row->product_name;
?>
<?php if($this->params->get('link_to_product_page',1)){ ?>
</a>
<?php } ?>
</span>
<!-- EO PRODUCT BRAND -->
I want to achieve this