credo che il file da modificare sia:
default_links.php
Code:
defined('_JEXEC') or die('Restricted access'); ?>
<div>
<strong><?php echo JText::_( 'More Articles...' ); ?></strong>
</div>
<ul>
<?php foreach ($this->links as $link) : ?>
<li>
<a class="blogsection" href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($link->slug, $link->catslug, $link->sectionid)); ?>">
<?php echo $this->escape($link->title); ?>[/url]
</li>
<?php endforeach; ?>
</ul>
in un forum suggeriscono di cambiarlo fra gli ul:
YOu see the part where it is makng the lists with the
<ul>
<li></li>
</ul>
tags? inside the for each?
What you will want to do is instead of doing that once and getting them all, split it up into 3 parts. You can even had code it to the 3x3 if you want rather than doing the loop.
ma capendo 0 di php avrei propio bisogno di di sapere cosa scrivere....