This applies to ArticleLive NX 1.6 and Below
You need navigate to the "Templates" link in your admin area, then select "Panel Files". Find RecentArticlesPanel.php and click edit. Or, via FTP, navigate to /templates/{your template}/Panels/RecentArticlesPanel.php.
Find this code:
$output .= sprintf("
</span>
<div class=\"Details\">%s <a href='%s'>%s</a>
| %s %s
| %s | <span class='RatingDisplay'>%s</span>
</div>
<div class=\"Content\">
<table cellspacing=0 cellpadding=0><tr><td valign=top>
%s
</td><td valign=top class=content>
%s
</td></tr></table>
</div>
<div class=\"SmallLinks\">
", $GLOBALS["AL_LANG"]["hpBy"], AL_HELPER::AuthorLink($articleRow["AuthorID"], $author), $author, $GLOBALS["AL_LANG"]["hpPublished"], AL_HELPER::GetRelativeDate($articleRow["SD"]), AL_HELPER::GetCategoryListCVS($articleRow["ArticleID"]), AL_HELPER::GetRatingBar($articleRow["ArticleID"]), AL_HELPER::GetAuthorPic($articleRow["AuthorID"]), $articleRow["Summary"]);
Then replace it with:
$output .= sprintf("
</span>
<div class=\"Content\">
<table cellspacing=0 cellpadding=0><tr><td valign=top>
%s
</td><td valign=top class=content>
%s
</td></tr></table>
</div>
<div class=\"SmallLinks\">
", AL_HELPER::GetAuthorPic($articleRow["AuthorID"]), $articleRow["Summary"]);
Thats it! All done!
Send us a trouble ticket from your client area if you are having any trouble with this modification.

The article has been updated successfully.