Hi guys,
I'm having a little problem here and maybe some of you know how to do this.
I need to be able to display both, article's author and author alias. This is not in Joomla content but in Raxo Allmode. A module for displaying news.
I have successfully retrieved the author alias' info, and also displayed it. The problem is that when I display the author's alias, the author's name disappear.
This is the code that retrieves the Alias (it's the same for author, just replace created_by_alias for author)
<?php if ($item->created_by_alias) { ?>
<span class="xxx_created_by_alias">
<?php echo $item->created_by_alias; ?></span>
<?php } ?>
As I said, this works very well, except from the fact that when the Alias is visible, the author's name disappear.
Any of you know how to display both at the same time??
Thanks!
Hernán.