Quote:
Originally Posted by shadiguy1
what should be in this template im gonna toy with it hope u can help first tho. lol
|
A really quick way of doing it would be this:-
In MEMBERINFO
Find:
Code:
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<if condition="$userinfo['showicq']">
<tr>
<td>$userinfo[icqicon]</td>
<td><a href="#" onclick="return imwindow('icq', '$userinfo[userid]', 500, 450)">$userinfo[icq]</a></td>
</tr>
</if>
<if condition="$userinfo['showaim']">
<tr>
<td>$userinfo[aimicon]</td>
<td><a href="#" onclick="return imwindow('aim', '$userinfo[userid]', 400, 200)">$userinfo[aim]</a></td>
</tr>
</if>
<if condition="$userinfo['showmsn']">
<tr>
<td>$userinfo[msnicon]</td>
<td><a href="#" onclick="return imwindow('msn', '$userinfo[userid]', 400, 200)">$userinfo[msn]</a></td>
</tr>
</if>
<if condition="$userinfo['showyahoo']">
<tr>
<td>$userinfo[yahooicon]</td>
<td><a href="#" onclick="return imwindow('yahoo', '$userinfo[userid]', 400, 200)">$userinfo[yahoo]</a></td>
</tr>
</if>
</table>
And replace with:
Code:
<! --- Online Status --- !>
<! --- by Beermonster - Edited by COBRAws & PitchouneN64ngc--- !>
<!--- http://www.onlinestatus.org/ -->
<table width="100%" border="0">
<tr>
<if condition="$post['icqicon']">
<td><a href="#" onclick="return imwindow('icq', '$userinfo[userid]', 500, 450)">
<img border=0 src="http://www.foxinus.cz:8085/icq/$post[icq]" alt="<phrase 1="$userinfo[username]">$vbphrase[send_message_via_icq_to_x]</phrase>" border="0" /></a>
</td></if>
<if condition="$post['msnicon']">
<td><a href="#" onclick="return imwindow('msn', '$userinfo[userid]', 400, 200)">
<img border=0 src="http://www.foxinus.cz:8085/msn/$post[msn]" alt="<phrase 1="$userinfo[username]">$vbphrase[send_message_via_msn_to_x]</phrase>" border="0" /></a>
</if></td>
<if condition="$post['yahooicon']">
<td><a href="#" onclick="return imwindow('yahoo', '$userinfo[userid]', 400, 200)">
<img border=0 src="http://www.foxinus.cz:8085/yahoo/$post[yahoo]" alt="<phrase 1="$userinfo[username]">$vbphrase[send_message_via_yahoo_to_x]</phrase>" border="0" /></a>
</if></td>
<if condition="$post['aimicon']">
<td><a href="#" onclick="return imwindow('aim', '$userinfo[userid]', 400, 200)">
<img border=0 src="http://www.foxinus.cz:8085/aim/$post[aim]" alt="<phrase 1="$userinfo[username]">$vbphrase[send_message_via_aim_to_x]</phrase>" border="0" /></a>
</if></td>
</tr>
</table>
<! --- / Online Status --- !>
This won't change the url in the Display Thread Options I may do this at a later date