Thank you so much.
I found that I should remove this code:
if($this->params->get('price_with_tax')){
echo $this->currencyHelper->format(@$price->price_value_with_tax,$price->price_currency_id);
}
if($this->params->get('price_with_tax')==2){
echo JText::_('PRICE_BEFORE_TAX');
}
if($this->params->get('price_with_tax')==2||!$this->params->get('price_with_tax')){
echo $this->currencyHelper->format($price->price_value,$price->price_currency_id);
}
if($this->params->get('price_with_tax')==2){
echo JText::_('PRICE_AFTER_TAX');
}
I tried but it's not working fine: sub-total, tax and total are only displayed in euro (kindly see screenshot attached).
Also I'm using multicart and now I have no price displayed in the mini cart.
Could you help me with the code to edit please?
Kindly see the screenshot attached.