Hi,
The simplest will be to edit the file "show" of the view "product" via the menu Display->Views and remove the code:
<div id="hikashop_product_description_<?php echo $variant_name;?>" style="display:none;">
<?php echo JHTML::_('content.prepare',preg_replace('#<hr *id="system-readmore" */>#i','',$variant->product_description));?>
</div>
and the code:
<div id="hikashop_product_price_<?php echo $variant_name;?>" style="display:none;">
<?php
if ($this->params->get('show_price')) {
$this->setLayout('listing_price');
echo $this->loadTemplate();
}
?>
</div>