I found location where should I add it
template/module/featured.tpl
but what should I add?
This one (taken from product.tpl) doesn't work because undefined $attribute_groups
Code: Select all
<?php if ($attribute_groups) { ?>
<?php foreach ($attribute_groups as $attribute_group) { ?>
<?php echo $attribute_group['name']; ?>:
<?php foreach ($attribute_group['attribute'] as $attribute) { ?>
<?php echo $attribute['name']; ?>
<?php echo $attribute['text']; ?>
<br />
<?php } ?>
<?php } ?>
<?php } ?>