- Автор темы
- #1
подскажите, пожалуйста, как вывести в product.tpl поле description из таблицы manufacturer_description?
Есть решение:
Уже помогли в другом месте. Если кому понадобится.
в controller/product/product.php
$manufacturer_info = $this->model_catalog_manufacturer->getManufacturer($product_info['manufacturer_id']);
$data['man_desc']= html_entity_decode($manufacturer_info['description'], ENT_QUOTES,'UTF-8');
в шаблоне product.tpl
<?php echo $man_desc;?>
Есть решение:
Уже помогли в другом месте. Если кому понадобится.
в controller/product/product.php
$manufacturer_info = $this->model_catalog_manufacturer->getManufacturer($product_info['manufacturer_id']);
$data['man_desc']= html_entity_decode($manufacturer_info['description'], ENT_QUOTES,'UTF-8');
в шаблоне product.tpl
<?php echo $man_desc;?>
Последнее редактирование: