Добрый день.
У меня валюта по умолчанию на сайте - рубли, в админке я задаю цену в долларах и она отображается на сайте в рублях.
решение ниже - НЕ ПОМОГЛО
введенное в настройках доставки число ВСЁ РАВНО умножается на курс
сайт - ak-furs.ru
catalog/model/shipping/flat.php
$quote_data['flat'] = array(
'code' => 'flat.flat',
'title' => $this->language->get('text_description'),
'cost' => $this->config->get('flat_cost'),
'tax_class_id' => $this->config->get('flat_tax_class_id'),
'text' => $this->currency->format($this->tax->calculate($this->config->get('flat_cost'), $this->config->get('flat_tax_class_id'), $this->config->get('config_tax')))
);
заменить на
$cost = $this->currency->convert($this->config->get('flat_cost'), 'RUB', $this->config->get('config_currency'));
$quote_data['flat'] = array(
'code' => 'flat.flat',
'title' => $this->language->get('text_description'),
'cost' => $cost,
'tax_class_id' => $this->config->get('flat_tax_class_id'),
'text' => $this->currency->format($this->tax->calculate($cost, $this->config->get('flat_tax_class_id'), $this->config->get('config_tax')))
);