Inline chat box user name link capable?

Thomas Hunter Posted in General Discussion 10 years ago

Is it possible to link the user's page within the name on the inline chat box?
enter image description here

Replies
Indonesian Arsalan Shah Replied 10 years ago

Yes , try to edit file components\OssnChat\plugins\default\chat\selectfriend.php

Find:

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

Change to :

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