Hi,
So you have to replace the code:
<?php
if($this->params->get('show_price','-1')=='-1'){
$config =& hikashop_config();
$this->params->set('show_price',$config->get('show_price'));
}
if($this->params->get('show_price')){ ?>
<td class="hikashop_product_price_row">
<?php
$this->setLayout('listing_price');
echo $this->loadTemplate();
?>
</td>
<?php } ?>
By:
<?php
if($this->params->get('show_price','-1')=='-1'){
$config =& hikashop_config();
$this->params->set('show_price',$config->get('show_price'));
}
if($this->params->get('show_price')){ ?>
<td class="hikashop_product_price_row">
<tr>
<td>
<?php
$this->setLayout('listing_price');
echo $this->loadTemplate();
?>
</td>
<td>
<?php echo JText::_('PR_VARE'); ?>
</td>
</tr>
</td>
<?php } ?>
This way it will be in a row under the product price.
Don't forget to add the translation for "PR_VARE".
ps: thanks to note that we generally don't provide customization code.