Not that thing you want but in my case, I made the date in Published page a complete "published date" while in Upcoming page still the same such as "2 days ago". Here's the code:
PHP Code:
{php}
$pub_time = $this->get_template_vars('link_published_time');
$published_time = date("M d, Y, h:i:s a T",$pub_time);
$this->assign('published_date',$published_time);
{/php}
{if $pagename eq "index" || $pagename eq "published"}
Published on {$published_date}
{else}
{$link_submit_timeago} {#PLIGG_Visual_Comment_Ago#}
{/if}
It might help you get started.