Found a slight error which I have fixed.
In memberinfo_block_mainurl
look for:
PHP Code:
<div class="alt1 block_row">
<dl class="list_no_decoration" id="additional_contact_details">
<dt class="shade">My SocialMeet URL:</dt>
<dd><a href="http://www.thesocialmeet.com/$prepared[username]">http://www.thesocialmeet.com/$prepared[username]</a></dd>
</div>
Change to:
PHP Code:
<div class="alt1 block_row">
<dl class="list_no_decoration" id="additional_contact_details">
<dt class="shade">My SocialMeet URL:</dt>
<dd><a href="http://www.thesocialmeet.com/$userinfo[username]">http://www.thesocialmeet.com/$userinfo[username]</a></dd>
</div>
Obviously, change MySocialMeet to the name of your website.
This was not pulling the username details / link if you had a html markup installed in the usergroup options.
Fixed.