Hello,
I'm testing out the chat with Joomla 3. I also have JomSocial installed as a component under Joomla. The problem is that when I start the chat, the user's real name is set as "nick" and the user's nickname is set as "name". I would rather that only nickname is used. I found this when Googling the problem:
http://www.123flashchat.com/community/index.php?topic=152412.msg284070#msg284070However, as I can see, this is for Joomla 2.5. I cannot see the same folder and file structure as mentioned in the post.
I found a file called view.html.php under components/com_123flashchat/views/flashchat. I edited this file.
The original:
if(!empty($user->name)){
$chaturl .= "&init_nickname=".rawurlencode(htmlspecialchars_decode($user->name))
Edited to:
if(!empty($user->username)){
$chaturl .= "&init_nickname=".rawurlencode(htmlspecialchars_decode($user->username))
This did not work. Could anyone please guide me as to what I'm doing wrong?