Во-первых, поправьте ширины левого и правого столбцов в файле /catalog/view/theme/ВАШАТЕМА/stylesheet/simple.css
.simplecheckout-left-column {
float:left;
width:52%;
margin-right:10px;
min-width: 280px;
max-width: 520px;
}
.simplecheckout-right-column {
float:right;
width:46%;
min-width: 280px;
max-width: 500px;
}
Во-вторых, нужно править модуль доставки /catalog/model/shipping/flat.php
Привел пример на вскидку
$quote_data['flat1'] = array(
'code' => 'flat.flat1',
'title' => 'Первый вариант',
'cost' => 300, // стоимость поправить тут и ниже на 2 строки в форматировании
'tax_class_id' => $this->config->get('flat_tax_class_id'),
'text' => $this->currency->format($this->tax->calculate(300, $this->config->get('flat_tax_class_id'), $this->config->get('config_tax')))
);
$quote_data['flat2'] = array(
'code' => 'flat.flat2',
'title' => 'Второй вариант',
'cost' => 500, // стоимость поправить тут и ниже на 2 строки в форматировании
'tax_class_id' => $this->config->get('flat_tax_class_id'),
'text' => $this->currency->format($this->tax->calculate(500, $this->config->get('flat_tax_class_id'), $this->config->get('config_tax')))
);
$quote_data['flat2'] = array(
'code' => 'flat.flat2',
'title' => 'Третий вариант',
'cost' => 700, // стоимость поправить тут и ниже на 2 строки в форматировании
'tax_class_id' => $this->config->get('flat_tax_class_id'),
'text' => $this->currency->format($this->tax->calculate(700, $this->config->get('flat_tax_class_id'), $this->config->get('config_tax')))
);
вместо
$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')))
);