Hi,
You can edit the file "listing_table" of the view "product" via the menu Display>Views and add such code:
$params = @$this->params;
global $Itemid;
$url_itemid = '';
if(!empty($Itemid)) {
$url_itemid = '&Itemid='.$Itemid;
}
echo $this->cart->displayButton(
JText::_('CONTACT_US_FOR_INFO'),
'contact_us',
$params,
''.hikashop_completeLink('product&task=contact&cid=' . $row->product_id.$url_itemid),
'window.location=\'' . hikashop_completeLink('product&task=contact&cid=' . $row->product_id.$url_itemid) . '\';return false;'
);
after the code:
$this->setLayout('add_to_cart_listing');
echo $this->loadTemplate();