PDA


View Full Version : by_username_on_date


R0B74
08-05-2008, 09:59 AM
I'd like to know if there's a VB Expression that I could use to replace
"by_username_on_date" that will remove the member name but keep the date information for the link. I tried "on_date" but I guess that's not a proper expression:D

Anyone have any advice?

thanks kindly

Brian
08-05-2008, 01:15 PM
Replace this bit of code:
<phrase 1="$link[username]" 2="$link[updatedate]" 3="$link[updatetime]" 4="$vboptions[bburl]/member.php?$session[sessionurl]u=$link[userid]" rel="nofollow">
<if condition="$link[\'userid\']">$vbphrase[by_username_on_date]<else />$vbphrase[by_guest_on_date]</if>
</phrase>

With this:
$link[updatedate] <span class="time">$link[updatetime]</span>

R0B74
08-06-2008, 04:12 AM
Looks Great TYVM.