I did this on my site:(members name) Online now !

and this is the icon for offline


change it in your templates …(I have dark_yellowish) … member_sections_name.tpl
open it in notepad++ …and you can save offline.gif and online.gif above and upload it to yours /templates/media/.
<h2 class=”inner”>
<a href=”{top.virtual_path}{member_profile_link}”>{member_username}</a>
<span class=”online”>{lang:”core”,”userinfo_online”}</span>
<!– ENDIF –>
</h2>
replace it with this if you will have a online.gif

<h2 class=”inner”>
<a href=”{top.virtual_path}{member_profile_link}”>{member_username}</a>
<!– IF settings.show_online AND member_online –>
<span class=”online”>
<img src=/templates/dark_yellowish/media/online.gif border=0 title=”Online”></span>
<!– ELSE –>
<img src=/templates/dark_yellowish/media/offline.gif border=0 title=”Offline”></span>
<!– ENDIF –>
</h2>
or replace it with this if you will have members name and online.gif

h2 class=”inner”>
<a href=”{top.virtual_path}{member_profile_link}”>{member_username}</a>
<!– IF settings.show_online AND member_online –>
<span class=”online”>{lang:”core”,”userinfo_online”}
<img src=/templates/dark_yellowish/media/online.gif border=0 title=”Online”></span>
<!– ELSE –>
<img src=/templates/dark_yellowish/media/offline.gif border=0 title=”Offline”></span>
<!– ENDIF –>
</h2>
we found a better solution, change this:
/templates/dark_yellowish/media/
to radioacts solution instead:
{virtual_tpl_path}{session.template}/media/
and save a copy of member_sections_name.tpl before you change anything in case something goes wrong.
thanks radioact for your help with <!– ELSE –> in the code …






















