Sure, You'll have to add this code :
<td class="hikashop_product_description_row">
<?php
echo $this->row->product_description; ?>
</td>
after this :
<?php if ($this->config->get('show_code')){ ?>
<td class="hikashop_product_code_row">
<?php if($this->params->get('link_to_product_page',1)){ ?>
<a href="<?php echo $link;?>">
<?php }
echo $this->row->product_code;
if($this->params->get('link_to_product_page',1)){ ?>
</a>
<?php } ?>
</td>
<?php } ?>
and add this code :
<th class="hikashop_product_description_title" align="center">
<?php echo JText::_( 'PRODUCT_DESCRIPTION' ); ?>
</th>
after this :
<?php if ($this->config->get('show_code')) { $columns++;?>
<th class="hikashop_product_code_title" align="center">
<?php echo JText::_( 'PRODUCT_CODE' ); ?>
</th>
<?php } ?>