The information in this article applies to versions of ArticleLive before NX.1.7.
Just open up /templates/{your template}/Panels/RecentBlogsPanel.php and find this code:
$output .= sprintf("
<div class=\"Title\"><a href='%s'>%s</a></div>
<div class=\"Details\">%s <a href='%s'>%s</a>
| %s</div>
", AL_HELPER::BlogLink($blogRow["EntryID"], $blogRow["Title"]), $blogRow["Title"], $GLOBALS["AL_LANG"]["hpBy"], AL_HELPER::AuthorLink($blogRow["AuthorID"], $author), $author, AL_HELPER::GetRelativeDate($blogRow["PD"]));
Then replace it with:
$output .= sprintf("
<div class=\"Title\"><a href='%s'>%s</a></div>
", AL_HELPER::BlogLink($blogRow["EntryID"], $blogRow["Title"]), $blogRow["Title"]);
If you have any troubles with this guide, send in a support ticket via your client area.
