How to make your friends names on the chat tab direct you to their profile?

Allon Prooit Posted in Performance and Scalability 3 years ago

On desktop, the chat tabs show you the name of the person you're chatting with, but gives you no way to access your friends profile. For a link to their profile I give to you this...
On line 40 of OssnChat/plugins/default/chat/selectfriend.php you find...

<div class="text ossn-chat-inline-table"><?php echo $user->fullname; ?></div>

Change it to this...

<div class="text ossn-chat-inline-table"><a href="<?php echo $params['user']->profileURL(); ?>"><?php echo $user->fullname; ?></a></div>

Now when you open the chat tab to chat, the friends name at the top is now a link to their profile!

Replies
us Allon Prooit Replied 3 years ago

Ok, so this discussion answered itself. Hoping all is going good!