BGN64
09-07-2012, 10:00 PM
This a very small template edit that shows a link to a Whois look up of the user IP on WOL. Something I had with my old forum software before migrating to vB... I missed it!
Go To: AdminCP>Edit templates>WHOSONLINE
Find:
<vb:if condition="$userinfo['show']['ip']">
<td class="whoinfo">
<vb:if condition="$userinfo['show']['ajax_resolve']">
<a href="online.php?{vb:raw session.sessionurl}do=resolveip&ipaddress={vb:raw userinfo.host_encoded}" id="resolveip_{vb:raw count}" title="{vb:rawphrase resolve_ip_address}">{vb:raw userinfo.host}</a>
<vb:else />
{vb:raw userinfo.host}
</vb:if>
Add Code in RED:
<vb:if condition="$userinfo['show']['ip']">
<td class="whoinfo">
<vb:if condition="$userinfo['show']['ajax_resolve']">
<a href="online.php?{vb:raw session.sessionurl}do=resolveip&ipaddress={vb:raw userinfo.host_encoded}" id="resolveip_{vb:raw count}" title="{vb:rawphrase resolve_ip_address}">{vb:raw userinfo.host}</a> - <a href="http://whois.domaintools.com/{vb:raw userinfo.host}" target="_blank">Whois</a>
<vb:else />
{vb:raw userinfo.host}
</vb:if>
Again, super simple, and something I wanted for myself and thought some other non-coders like me might be interested in. If any one knows of a mod that provides a whois look up similar to this please let me know. I would love to install it instead of editing the template :)
Go To: AdminCP>Edit templates>WHOSONLINE
Find:
<vb:if condition="$userinfo['show']['ip']">
<td class="whoinfo">
<vb:if condition="$userinfo['show']['ajax_resolve']">
<a href="online.php?{vb:raw session.sessionurl}do=resolveip&ipaddress={vb:raw userinfo.host_encoded}" id="resolveip_{vb:raw count}" title="{vb:rawphrase resolve_ip_address}">{vb:raw userinfo.host}</a>
<vb:else />
{vb:raw userinfo.host}
</vb:if>
Add Code in RED:
<vb:if condition="$userinfo['show']['ip']">
<td class="whoinfo">
<vb:if condition="$userinfo['show']['ajax_resolve']">
<a href="online.php?{vb:raw session.sessionurl}do=resolveip&ipaddress={vb:raw userinfo.host_encoded}" id="resolveip_{vb:raw count}" title="{vb:rawphrase resolve_ip_address}">{vb:raw userinfo.host}</a> - <a href="http://whois.domaintools.com/{vb:raw userinfo.host}" target="_blank">Whois</a>
<vb:else />
{vb:raw userinfo.host}
</vb:if>
Again, super simple, and something I wanted for myself and thought some other non-coders like me might be interested in. If any one knows of a mod that provides a whois look up similar to this please let me know. I would love to install it instead of editing the template :)