I want show in category multiple curency price
i have a code tike this
$this->currency->convert($price, 'RUB', 'CNY'),
Where to put this in caregory controller for working?
I want show in category multiple curency price
i have a code tike this
$this->currency->convert($price, 'RUB', 'CNY'),
Where to put this in caregory controller for working?
I resolve my problem like this
if ($this->customer->isLogged() || !$this->config->get('config_customer_price')) {
$price = $this->currency->format($this->tax->calculate($result['price'], $result['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']);
$price_2 = $this->currency->format($this->tax->calculate($result['price'], $result['tax_class_id'], $this->config->get('config_tax')), 'CNY');
} else {
$price = false;
$price_2 = false;
}
Maybe someone have better way to make.