Simple из коробки поддерживает вывод описания к методам доставки, просто передайте массив из модели доставки вместе с description, он сам выведется. Пример:
$quote_data['advanced_shipping' . $key] = array(
'key' => $key,
'code' => 'advanced_shipping.advanced_shipping' . $key,
'title' => html_entity_decode($value['name'][$this->current_language_id], ENT_QUOTES, 'UTF-8'),
'description' => html_entity_decode($value['description'][$this->current_language_id], ENT_QUOTES, 'UTF-8'),
'cost' => $value['cost'],
'tax_class_id' => $tax_class_id,
'text' => $this->currency->format($this->tax->calculate($value['cost'], $tax_class_id, $this->config->get('config_tax')), $this->session->data['currency'])
);
Для тех у кого simle не стоит, поддержку вывода description можно сделать так:
<?xml version="1.0" encoding="UTF-8"?>
<modification>
<id>Advanced Shipping</id>
<version>1.0</version>
<vqmver></vqmver>
<author>Shashakhmetov Talgat [
[email protected]]</author>
<file name="catalog/view/theme/default/template/checkout/shipping_method.tpl">
<operation error="log">
<search position="replace"><![CDATA[<label for="<?php echo $quote['code']; ?>"><?php echo $quote['title']; ?></label>]]></search>
<add><![CDATA[<label for="<?php echo $quote['code']; ?>"><?php echo $quote['title']; ?><?php echo isset($quote['description']) ? "<br/>".$quote['description'] : ""; ?></label>]]></add>
</operation>
</file>
</modification>