Hi,
No one asked for that so far.
You will have to edit the file "option" of the view "product" via the menu Display->Views and change the line:
$html='<span class="hikashop_option_name" >'.$optionInfo->product_name.$options.'</span></td><td>'.$html;
to:
$app=&JFactory::getApplication();
$itemid_url='';
global $Itemid;
if(!empty($Itemid)){
$itemid_url = '&Itemid='.$Itemid;
}
$html='<span class="hikashop_option_name" ><a href="'.hikashop_completeLink('product&task=show&cid='.$optionInfo->product_id.'&name='.$app->stringURLSafe($optionInfo->product_name).$itemid_url).'">'.$optionInfo->product_name.'</a>'.$options.'</span></td><td>'.$html;