Merjawy
07-14-2012, 10:00 PM
This is a little mod that I use on my boards and wanted to share with the community.
What does it do?
This mod will make the "question mark" icon ( https://vborg.vbsupport.ru/images/icons/icon5.gif ) in Who's Online clickable so you can see the real location of the visitor on your forum.
Time= 1 minute
Files to edit= 0
Templates to edit=1
Install:
Edit template WHOSONLINE:
Find this code:
<vb:if condition="$userinfo['show']['reallocation']"><img src="{vb:stylevar imgdir_misc}/question_icon.gif" alt="{vb:raw userinfo.location}" /></vb:if>
Replace it with this code:
<vb:if condition="$userinfo['show']['reallocation']"><a href="{vb:raw userinfo.location}" target="_"><img src="{vb:stylevar imgdir_misc}/question_icon.gif" alt="{vb:raw userinfo.location}" /></a></vb:if>
This will open the link in a new page/tab.
If you want the link to open in same page:
Replace the original code above with this code:
<vb:if condition="$userinfo['show']['reallocation']"><a href="{vb:raw userinfo.location}"><img src="{vb:stylevar imgdir_misc}/question_icon.gif" alt="{vb:raw userinfo.location}" /></a></vb:if>
I hope you find this mod of some use.
I tested this on vB 4.2.0 and 4.2.1 Alpha
7/17/12 Updated missing closing </a> tag
If you enjoy my mod, please consider marking it as "Installed". Any comments are welcome.
What does it do?
This mod will make the "question mark" icon ( https://vborg.vbsupport.ru/images/icons/icon5.gif ) in Who's Online clickable so you can see the real location of the visitor on your forum.
Time= 1 minute
Files to edit= 0
Templates to edit=1
Install:
Edit template WHOSONLINE:
Find this code:
<vb:if condition="$userinfo['show']['reallocation']"><img src="{vb:stylevar imgdir_misc}/question_icon.gif" alt="{vb:raw userinfo.location}" /></vb:if>
Replace it with this code:
<vb:if condition="$userinfo['show']['reallocation']"><a href="{vb:raw userinfo.location}" target="_"><img src="{vb:stylevar imgdir_misc}/question_icon.gif" alt="{vb:raw userinfo.location}" /></a></vb:if>
This will open the link in a new page/tab.
If you want the link to open in same page:
Replace the original code above with this code:
<vb:if condition="$userinfo['show']['reallocation']"><a href="{vb:raw userinfo.location}"><img src="{vb:stylevar imgdir_misc}/question_icon.gif" alt="{vb:raw userinfo.location}" /></a></vb:if>
I hope you find this mod of some use.
I tested this on vB 4.2.0 and 4.2.1 Alpha
7/17/12 Updated missing closing </a> tag
If you enjoy my mod, please consider marking it as "Installed". Any comments are welcome.