I try to modified code for links section in com frontpage. I changed "components/com_content/frontpage/views/frontpage/tmpl/default_links.php" like below.
Code: Select all
<?php // no direct access
defined('_JEXEC') or die('Restricted access'); ?>
<div>
<strong><?php echo JText::_( 'More Articles...' ); ?></strong>
</div>
<ul>
<?php foreach ($this->links as $link) : ?>
<li>
[b][u]<?php echo JHTML::_('date', $this->links->created, JText::_('DATE_FORMAT_LC4')); ?>[/u] [/b]
<a class="blogsection" href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($link->slug, $link->catslug, $link->sectionid)); ?>">
<?php echo $link->title; ?></a>
</li>
<?php endforeach; ?>
</ul>
Thank you
Umpol