I noticed a small typo tonight. While viewing the "registered members" index page, I noticed that the "skype on" image wasn't showing. I found the problem and have a simple fix. Below is a screen shot of the problem.
https://vborg.vbsupport.ru/attachmen...1&d=1202517784
member_index_misspell.jpg
And here is a screen shot of the problem fixed.
https://vborg.vbsupport.ru/attachmen...1&d=1202518069
member_index_fixed.jpg
To fix this problem open the "memberindex_userbit" template and find
Code:
<if condition="$userinfo[skype]<>''">
<a href="#" onclick="imwindow('skype', '$userinfo[userid]', 400, 285); return false;">
<img border="0" src="memberindex/images/skype_on.gif" width="18" height="18" alt="<phrase 1="$userinfo[username]">$vbphrase[send_message_via_skype_to_x]</phrase>"></a></td>
<else />
<img border="0" src="memberindex/images/shype_off.gif" width="18" height="18"></td>
</if>
replace with
Code:
<if condition="$userinfo[skype]<>''">
<a href="#" onclick="imwindow('skype', '$userinfo[userid]', 400, 285); return false;">
<img border="0" src="memberindex/images/skype_on.gif" width="18" height="18" alt="<phrase 1="$userinfo[username]">$vbphrase[send_message_via_skype_to_x]</phrase>"></a></td>
<else />
<img border="0" src="memberindex/images/skype_off.gif" width="18" height="18"></td>
</if>