Quantcast
Channel: MyBB Community Forums - Tutorials
Viewing all articles
Browse latest Browse all 685

[Modification] How to show user avatar in the Who's Online?

$
0
0
Hi,
I hope the subject is in the right place.

How to show user avatar in the Who's Online.

View:

[Image: EkranResmi2018-04-0222.42.44.png]

[Image: EkranResmi2018-04-0223.04.13.png]

Open the FTP -> index.php:

Find the following code: (line 59)
PHP Code:
SELECT s.sids.ips.uids.times.locations.location1u.usernameu.invisibleu.usergroupu.displaygroup 

Change:
PHP Code:
SELECT s.sids.ips.uids.times.locations.location1u.usernameu.invisibleu.usergroupu.avataru.displaygroup 

And open the Admin KP -> Themes and Templates -> Templates -> Your Theme Templates -> Index Templates -> index_whosonline_memberbit

Open and replace all the codes with this one.

Code:
<div style="float: left">{$comma}<div style="margin-left: 5px"></div></div><div style="margin-top: 5px"><img src="{$user['avatar']}" width="20px" height="20px" style="float: left; margin-top: -4px; border-radius: 2px; border: 1px solid #ccc; margin-right: 3px"><div style="float: left; margin-top: -1px">{$user['profilelink']}{$invisiblemark}</div></div>

---

Open the FTP -> online.php:

Find this code: (Line 207)

PHP Code:
SELECT DISTINCT s.sids.ips.uids.times.locationu.usernames.nopermissionu.invisibleu.usergroupu.displaygroup 

Change:

PHP Code:
SELECT DISTINCT s.sids.ips.uids.times.locationu.usernames.nopermissionu.avataru.invisibleu.usergroupu.displaygroup 

Admin KP -> Temalar & Şablonlar -> Şablonlar -> Temanız Templates -> Kimler Çevrimiçi Şablonlar -> online_row

Replace all the codes with this one.

Code:
<tr>
<td class="trow1"><img src="{$user['avatar']}" width="38px" height="38px" style="float: left; margin-right: 5px; border-radius: 3px"/>{$online_name}{$user_ip}</td>
<td align="center" class="trow2">{$online_time}</td>
<td class="trow1" width="50%">{$location}</td>
</tr>

Good works!

Viewing all articles
Browse latest Browse all 685

Trending Articles