My Joomla installation is using 2 templates. A custom home page template which is also the default template and has no position to load a component and a second/Internal template which loads the components. So for the menus I create I have to manually assign them to the internal template, but I'm running into an issue with the 'read more' link in the Ari Scroller which is supposed to take you to the full article but it loads the home page because it's the default. Is there some code I have to modify to allow the article to be loaded in the internal template.
I was looking at this code in class.Articles.php but I'm at a loss as to what to modify.
Code: |
function getArticleLink($article)
{
$link = 'index.php?option=com_content&view=article&id=' . $article->id;
if ($article->catid)
$link .= '&catid=' . $article->catid;
return $link;
}
}
|
Thanks