Hi,
Another solution can be to add this code :
<th class="hikashop_product_image title" align="center">
<?php echo JText::_( 'HIKA_DESCRIPTION' );?>
</th>
after these lines :
<th class="hikashop_product_image title" align="center">
<?php echo JText::_( 'HIKA_IMAGE' );?>
</th>
And this code :
<td class="hikashop_product_description_row">
<span class="hikashop_product_description">
<?php
echo $this->row->product_description;
?>
</span>
</td>
After these lines :
<td class="hikashop_product_name_row">
<span class="hikashop_product_name">
<?php if($this->params->get('link_to_product_page',1)){ ?>
<a href="<?php echo $link;?>">
<?php }
echo $this->row->product_name;
if($this->params->get('link_to_product_page',1)){ ?>
</a>
<?php } ?>
</span>
<?php if(!empty($this->row->extraData->afterProductName)) { echo implode("\r\n",$this->row->extraData->afterProductName); } ?>
</td>