Hi,
So, suppose that your product data is an object in the variable $product.
You can use such code:
include_once(rtrim(JPATH_ADMINISTRATOR,DIRECTORY_SEPARATOR).'/components/com_hikashop/helpers/helper.php'); //load the main helper of HikaShop
$Itemid = XXX; //where XXX is the id of a product/category listing menu item
$productClass = hikashop_get('class.product');
$productClass->addAlias($product);
echo hikashop_contentLink('product&task=show&cid='.$product->product_id.'&name='.$product->alias.$Itemid, $product);