Hi Philip
In Hikashop version 4.4.4 in the listing_img_title layout,, I created a custom field of the product type called indexnoindex, which will add the rel="nofollow to the end of the product link when it is set to yes on the product management page.
<?php
/**
*------ Add this and add 'rel="nofollow"' at the end of product link in line 40 and 80
*/
$index_noindex = '';
if($this->row->indexnoindex == '0' || $this->row->indexnoindex == '' ){
$index_noindex = '';
}else{
$index_noindex = 'rel="nofollow"';
}
?>
<?php if($haveLink) { ?>
<a href="<?php echo $link;?>" title="<?php echo $this->escape($this->row->product_name); ?>" <?php echo $index_noindex;?> >
<?php } ?>
I can't find the product link in version 4.6.1