advance mode

 

For using gAuthor in Advanced Template mode, you have to override Joomla’s output. You can find the necessary information about this on Joomla! documentation.

If you set the “Display Mode” to “Advanced Template”, the plugin adds following properties to the article object.

$article->AuthorArticles; //On Profiles Only
$article->ProfileIntro;
$article->RecentArticles;

On your layout (article view only) you can use something like this :

<?php if (isset($this->article->AuthorArticles)) 
echo $this->article->AuthorArticles; ?>

<?php if (isset($this->article->ProfileIntro)) 
echo $this->article->ProfileIntro; ?>

<?php if (isset($this->article->RecentArticles)) 
echo $this->article->RecentArticles; ?>