I was also having a problem with the image not showing. Plus, I didn't want two IP icons on each post, so I did the following:
In postbit_proxyip, I found the following:
Code:
<vb:if condition="($post[proxyip] == '')">
<a class="ip" href="postings.php?{vb:raw session.sessionurl}do=getip&p={vb:raw post.postid}" title="{vb:rawphrase ip}: {vb:raw post.ip}"> </a>
<vb:else />
And replaced it with this:
Code:
<vb:if condition="($post[proxyip] == '')">
<a class="ip" href="http://www.infosniper.net/index.php?ip_address={vb:raw post.ip}&map_source=1&two_maps=1&overview_map=1&lang=1&map_type=1&zoom_level=7" target="_blank" title="{vb:rawphrase ip}: {vb:raw post.ip}"> </a>
<vb:else />
It is not an elegant (or permanent) solution, but it basically does the same thing. Hopefully the coder will show up and help us all out with this!