Hi,
The solution will be to change these lines :
<div id="hikashop_product_description_main" class="hikashop_product_description_main">
<?php
//DISPLAY the product description
echo JHTML::_('content.prepare',preg_replace('#<hr *id="system-readmore" */>#i','',$this->element->product_description));
?>
</div>
By :
<div id="hikashop_product_description_main" class="hikashop_product_description_main">
<?php
//DISPLAY the product description
echo substr(JHTML::_('content.prepare',preg_replace('#<hr *id="system-readmore" */>#i','',$this->element->product_description)),0,50);
?>
</div>
Note that you can replace the 50 by the number of character that you want for your product description.