change nickname to full name

Hi all.

i want to change users nickname with users full name in members list page (htp://***.com/browse.php) and in members box in index page.

how can i do that ?

Quote · 28 Jun 2011

Me too. Did you find out how to do it?

Sometimes communicating your problem and putting it out there is enough to solve it
Quote · 29 Jun 2011

Yes ,

Finally i do that ,

Solution:

edit file templates/base/scripts/BxBaseFunctions.php

Find:
$sNick = getNickname($iId);

Change it to:

$aInfo = getProfileInfo($iId);
$sNick = $aInfo['FirstName'].'<br>'.$aInfo['LastName'];

The reason I am using the <br> is to put first name on one line and last name on a 2nd line. You dont have to use the <br> you can just put an empty space there so the first/lastname is spaced out. Since the Avatar are so small the <br> is much better in my opinion.

Javad Talebi

Quote · 29 Jun 2011

I have seen this solution on Unity and some people say its good and some say its not.

I'll appreciate it if you send me a link to your site so that I can see the result.

Thank you.

Sometimes communicating your problem and putting it out there is enough to solve it
Quote · 29 Jun 2011

Here you go a full write up:

http://www.boonex.com/forums/?action=live_tracker#topic/Show-First-Last-Name-under-Avatar-SOLUTION-.htm

Quote · 16 Feb 2012
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.