|
|
Realnames instead of Usernames
|
|
Date: 2005/12/22 06:56
|
By: rick
|
Status: User
|
|
|
Karma: 42  
|
|
Gold Joomlapolitan  | Posts: 290 |   | |
|
I'm sure there are a lot of people who like me think that one of the main aspects of CB is to build communities. A community in my mind is a bunch of people getting together and getting to know each other. My question is how do you get to know people when most of the apps do not show a real name but a nickname. The purpose of this post is to show a couple of ways to present real names instead of nicknames.
Since I am having problems putting this all in one post I will put the idea here then the tips in the replys.
Post edited by: rick, at: 2005/12/22 01:52 Rick
Running: Joomla! 1.0.7 Stable Community Builder 1.0 rc2 SMF 1.1 RC2
|
|
The topic has been locked. |
|
|
|
Re:Realnames instead of Usernames
|
|
Date: 2005/12/22 07:13
|
By: rick
|
Status: User
|
|
|
Karma: 42  
|
|
Gold Joomlapolitan  | Posts: 290 |   | |
|
Whos on Line - Several show username but the best that I have found is Who's Online Addon Extensions. It has the option to present either Username or Realname. It also supports SMF, MyPMS, Flashchat, and CB. It can be found at http://www.joomlahacks.com/component/option,com_remository/Itemid,41/func,fileinfo/id,272/
Post edited by: rick, at: 2005/12/22 02:48 Rick
Running: Joomla! 1.0.7 Stable Community Builder 1.0 rc2 SMF 1.1 RC2
|
|
The topic has been locked. |
|
|
|
Re:Realnames instead of Usernames
|
|
Date: 2005/12/22 08:50
|
By: rick
|
Status: User
|
|
|
Karma: 42  
|
|
Gold Joomlapolitan  | Posts: 290 |   | |
|
MyPMS Enhanced - To fix this problem in myPMS enhansed and probably the other varients of myPMS open open.php in the Components/com_pms directory. At around line 254 find the line
| Code: | if($cb_use=='1') $query="SELECT t1.username,t1.name FROM #__users AS t1, #__comprofiler AS t2 WHERE t1.block!='1' AND
t2.approved='1' AND t2.confirmed='1' AND t1.username!='$my->username' AND t1.id=t2.user_id ORDER BY
username";
| and change it to
| Code: | if($cb_use=='1') $query="SELECT t1.username,t1.name FROM #__users AS t1, #__comprofiler AS t2 WHERE t1.block!='1' AND
t2.approved='1' AND t2.confirmed='1' AND t1.username!='$my->username' AND t1.id=t2.user_id ORDER BY
name";
| then find at line 255
| Code: | else $query="SELECT username,name FROM #__users WHERE block!='1' AND username!='$my->username' ORDER BY
username";
| and change it to
| Code: | else $query="SELECT username,name FROM #__users WHERE block!='1' AND username!='$my->username' ORDER BY name";
| Rick
Running: Joomla! 1.0.7 Stable Community Builder 1.0 rc2 SMF 1.1 RC2
|
|
The topic has been locked. |
|
|
|
Re:Realnames instead of Usernames
|
|
Date: 2005/12/22 08:54
|
By: rick
|
Status: User
|
|
|
Karma: 42  
|
|
Gold Joomlapolitan  | Posts: 290 |   | |
|
Total users - I prefer the module Total Users like the one found here at Joomlapolis. It can be found at http://mamboforge.net/frs/?group_id=222&release_id=2823 At the botom of the module it can display Last Registered but it also shows username. To fix this open /modules/mod_totalusers.php at around line 36 you will find a line that starts with
| Code: | $query5 = "SELECT username
| Change it to | Code: | $query5 = "SELECT name
| Rick
Running: Joomla! 1.0.7 Stable Community Builder 1.0 rc2 SMF 1.1 RC2
|
|
The topic has been locked. |
|
|
|
Re:Realnames instead of Usernames
|
|
Date: 2005/12/24 02:11
|
By: crow
|
Status:
|
|
|
Karma: 2  
|
|
Senior Joomlapolitan  | Posts: 60 |   | |
|
Dont know if this is a bug or something in TOTAL User Module. But user that are not confirmed are showed in this Totaluser list as last registred. I check the Joomla User Menager and this user is enabled, but in Comunity Builder user Menagment it isnt.....
I checked user registration it work, and all part of registration and confirmation are done trought CB....
Thnx
|
|
The topic has been locked. |
|
|