Hi,
You'll be able to do it by :
- Going to "Hikashop->Display->Views"
- Editing the show_default file of the product view of your front-end template
- Changing 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 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>
Hope this will help you.