I think you'll have to use a plugin and do a query on the visitormessage table and get the latest message from there:
SELECT pagetext FROM visitormessage WHERE userid=$post['userid'] ORDER by vmid DESC
Something like that? You'll have to get it formatted correctly and add the query_first in front of it. You may have to do something to the pagetext also cuz it could be a really long message and I would guess you don't want to show the whole thing if it is.
|