Hi guys
I'm trying to achieve the same thing. I understand I have to switch these parts:
if($this->params->get('show_price')){
$this->setLayout('listing_price');
echo $this->loadTemplate();
}
?>
<span class="hikashop_product_name">
<?php if($this->params->get('link_to_product_page',1)){ ?>
<a href="<?php echo $link;?>">
<?php }
echo $this->row->product_name;
if($this->params->get('link_to_product_page',1)){ ?>
</a>
<?php } ?>
</span>
However, when I put the hikashop_product_name span on top, I get the following error:
Parse error: syntax error, unexpected '<' in /home/ozoncosm/public_html/components/com_hikashop/views/product/tmpl/listing_img_title.php
Please help
Thank you