собственно сабж в заголовке:
опенкарт 2.3.0.8
в чем может быть ошибка- в контроллере catalog/controller/product/category.php добавляю
'attribute_groups' => $this->model_catalog_product->getProductAttributes($result['product_id']),
в шаблон вставляю
<?php if ($product['attribute_groups']) { ?>
<div id="attribute">
<table class="attribute">
<?php foreach ($product['attribute_groups'] as $attribute_group) { ?>
<thead>
<tr>
<td colspan="2"><?php echo $attribute_group['name']; ?></td>
</tr>
</thead>
<tbody>
<?php foreach ($attribute_group['attribute'] as $attribute) { ?>
<tr>
<td><?php echo $attribute['name']; ?></td>
<td><?php echo $attribute['text']; ?></td>
</tr>
<?php } ?>
</tbody>
<?php } ?>
</table>
</div>
<?php } ?>
куда копать чтоб заработало?
ЗЫ: аналогично делаю с опциями $options = $this->model_catalog_product->getProductOptions($result['product_id']); - та же беда