Ciao,
ho letto questo
articolo (ben fatto), ma non spiega come poter inserire un eventuale icona davanti ai singoli parametri come scritto da/categoria/pubblicato.
Dovrei forse aggiungere una classe al code sottostante, ma non saprei come scomporlo:
<?php // Todo Not that elegant would be nice to group the params ?>
<?php $useDefList = ($params->get('show_modify_date') || $params->get('show_publish_date') || $params->get('show_create_date')
|| $params->get('show_hits') || $params->get('show_category') || $params->get('show_parent_category') || $params->get('show_author') ); ?>
<?php if ($useDefList && ($info == 0 || $info == 2)) : ?>
<?php echo JLayoutHelper::render('joomla.content.info_block.block', array('item' => $this->item, 'params' => $params, 'position' => 'above')); ?>
<?php endif; ?>
Il code si trova nel file blog_item.php.
Qualcuno può darmi una mano, per favore?