Ok in your style, edit the template,
display_contenttype_searchwidget_item_header
Find this bit of code:
Code:
<vb:if condition="!empty($conversation['userid'])">
<a href="{vb:url 'profile', {vb:raw conversation}}">{vb:raw conversation.authorname}</a>
<vb:else />
{vb:phrase guest}
</vb:if>
And change it to this:
Code:
<vb:if condition="!empty($conversation['userid'])">
<a href="{vb:url 'profile', {vb:raw conversation}}">{vb:raw conversation.musername}</a>
<vb:else />
{vb:phrase guest}
</vb:if>