Dear rymy,
According to the purpose of design, the # links are inserted in "More news".
If you want to change text and link, please do the following steps.
a) go to "modules\mod_articles_latest\helper.php", finding:
if ($access || in_array($item->access, $authorised)) {
// We know that user has the privilege to view the article
$item->link = JRoute::_(ContentHelperRoute::getArticleRoute($item->slug, $item->catslug));
} else {
$item->link = JRoute::_('index.php?option=com_users&view=login');
}
=>
if ($access || in_array($item->access, $authorised)) {
// We know that user has the privilege to view the article
$item->link = JRoute::_(ContentHelperRoute::getArticleRoute($item->slug, $item->catslug));
} else {
$item->link = JRoute::_('index.php?option=com_users&view=login');
}
$item->catlink = JRoute::_(ContentHelperRoute::getCategoryRoute($item->catid));
b) go to "templates\sj_news25\html\mod_articles_latest\default.php", finding:
<?php if($moduleclass_sfx==''){?><a href="#" class="more-news"><?php echo 'More news';?></a><?php } ?>
=>
<?php if($moduleclass_sfx==''){?><a href="<?php echo $item->catlink;?>" class="more-news"><?php echo 'More news';?></a><?php } ?>
Thanks