MyBB Community Forums

Full Version: Custom field under "contact details"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I was wondering how I would go about adding "Skype Username" to the current contact details. I googled a little bit but I didn't see anything that was helpful.

Any ideas? If you don't know what I mean, this screenshot will show what I mean more clearly.

http://i.imgur.com/3d2HJ.png

Thanks.
Admin CP > configuration > on the left it sez custom Profile field..

Hit reps if u like my solution...
Not what I'm looking for. If you read my original post you would see that I want the "Skype Username" field to come under Contact Details, not Additional Info.

Anyone else?
I have been wanting to do the same. If we cant add can we edit a few of them such as icq?
Edit the Custom Profile Field > and select Yes in "Hide on profile?" option.

Now open member_profile template and find;
<tr>
<td class="{$bgcolors['msn']}"><strong>{$lang->msn}</strong></td>
<td class="{$bgcolors['msn']}"><a href="javascript:;" onclick="MyBB.popupWindow('misc.php?action=imcenter&amp;imtype=msn&amp;uid={$uid}', 'imcenter', 450, 300);">{$memprofile['msn']}</a></td>
</tr>
and ADD the following code just after that;
<tr>
<td class="trow1"><strong>Skype Name:</strong></td>
<td class="trow2">{$userfields['fidX']}</td>
</tr>

Where X is the Custom Profile Field ID.

It would be now visible in Contact Details, something like this;
[attachment=26484]
Thanks but mine is still showing on Additional Info
It shows on Contact Details Though.
And mines is hidden i followed your post.