Hi Jacqueline,
I think that the solution would be to directly edit the "listing_div" file of the "product" view of your front-end template, through "Hikashop->Display->Views" and add this kind of code :
global $Itemid;
$custom_itemid = $this->params->get('itmeid');
$url_itemid = '';
if(!empty($custom_itemid)){
$url_itemid = '&Itemid='.(int)$custom_itemid;
}
elseif(!empty($Itemid)){
$url_itemid = '&Itemid='.(int)$Itemid;
}
$link = hikashop_completeLink('product&task=show&cid='.$row->product_id.'&name='.$row->alias.$url_itemid);?> <a href="<?php echo $link;?>" title="<?php echo $this->escape($row->product_name); ?>"> MORE INFORMATION </a> <?php
after these lines :
$this->row =& $row;
$this->setLayout('listing_'.$this->params->get('div_item_layout_type'));
echo $this->loadTemplate();
Hope this will help you a little.