Categories images in category list - Joomla! Forum - community, help and support
how make category list display images associated them. not in category
i modified file default_items.php in folder /templates/my_template/html/com_content/categories/, adding piece of code display images in list of article categories of joomla
code: select all
<div class="category-desc">
<div style="clear: both;"></div>
<?php if ($item->getparams()->get('image')) : ?>
<img src="<?php echo $item->getparams()->get('image'); ?>" style="margin: 10px; float: left;" />
<?php endif; ?>
<?php echo jhtml::_('content.prepare', $item->description, '', 'com_content.categories'); ?>
<div style="clear: both;"></div>
</div>
Comments
Post a Comment