Quote:
Originally Posted by shadiguy1
thats not what i mean. what i mean is when u selecy whos online to show list of currently active users on vb there is a section that shows the icons if they are added vy the user in there CP like if they have aim or msn etc. I want to be able for these icons to as well be listed as online or offline.
|
Just to simply use the icons go to
Who's Online Templates/whosonlinebit and find at the end of the template:
Code:
<if condition="$vboptions['showimicons']">
<td class="alt2" align="center" nowrap="nowrap">
$userinfo[aimicon]
$userinfo[icqicon]
$userinfo[msnicon]
$userinfo[yahooicon]
</td>
</if>
</tr>
replace with:
Code:
<! --Who's Online - Online Status Start --- !>
<! -- by Beermonster --- !>
<!-- http://www.onlinestatus.org/ -->
<td class="alt2" align="center" nowrap="nowrap">
<if condition="$userinfo['msnicon']">
<img border=0 src="http://osi.kanadian.net:8080/msn/$userinfo[msn]" alt="$userinfo[msn]">
</if></a>
<if condition="$userinfo['yahooicon']">
<img border=0 src="http://osi.kanadian.net:8080/yahoo/$userinfo[yahoo]" alt="$userinfo[yahoo]"></a>
</if>
<if condition="$userinfo['aimicon']">
<img border=0 src="http://osi.kanadian.net:8080/aim/$userinfo[aim]" alt="$userinfo[aim]"></a>
</if>
<if condition="$userinfo['icqicon']">
<img border=0 src="http://osi.kanadian.net:8080/icq/$userinfo[icq]" alt="$userinfo[icq]"></a>
</if>
</table>
<! -- Online Status End --- !>