Hi,
Well, you can just read the code:
<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>
that's the piece for the description.
You can move it after
<div id="hikashop_product_right_part" class="hikashop_product_right_part">
if you want to have it on the right.
The piece for characteristics is
<?php
$this->setLayout('show_block_characteristic');
echo $this->loadTemplate();
?>
and the piece for the price is
<span id="hikashop_product_price_main" class="hikashop_product_price_main">
<?php
//LAYOUT listing_price
if ($this->params->get('show_price')) {
$this->row = & $this->element;
$this->setLayout('listing_price');
echo $this->loadTemplate();
}
?>
</span>