Hi,
amatuer question: where it must be pasted?
I figure that it must be pasted directly in listing_table instead of loading listing_price template, so:
<?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();
$currencyClass = hikashop_get('class.currency');
$curr = '';
$currencyInfo = $currencyClass->getCurrencies($price->price_currency_id,$curr);
echo str_replace(array($currencyInfo[1]->currency_symbol,$currencyInfo[1]->currency_code),'',$this->currencyHelper->format(@$price->price_value_with_tax,$price->price_currency_id));
?>
</td>
<?php } ?>
But the result is "0,00 €" for all prices. Perhaps I did an obvious mistake, but I can not figure it out.
Thank you.