i have also made this similar to all the other fb connect so when a user is logged in with fb it will display their fb avatar, just like vb4 or that old fb connect.
i will only provide the code, feel free to edit it to your theme as you wish
this is just standard vb3 theme placement, and may not be the perfect spot for you but try it out:
open template navbar
find:
Code:
<img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_start.gif" alt="" border="0" /></a> <strong>$vboptions[bbtitle]</strong></div>
</if>
</td>
below add:
Code:
<if condition="$bbuserinfo[fbuid]">
<td class="alt2" align="center" style="width:51px;padding:4px;">
<div style="position:relative;padding:3px;">
<a target="_new" href="http://www.facebook.com/profile.php?id=$bbuserinfo[fbuid]">
<img width="40" height="40" alt="Connected with Facebook" src="https://graph.facebook.com/$bbuserinfo[fbuid]/picture" title="Connected with Facebook" border="0" >
<img style="width: 15px; height: 15px; position: absolute; left: 2px; top: -3px; z-index: 2;" alt="Connected with Facebook" src="$vboptions[bburl]/fbb/facebook_logo_16x16.gif" title="Connected with Facebook" border="0" />
</a>
</div>
</td>
</if>
for people who know what theyre doing:
so with that snippit you shoud catch the main condition for the fb id and the if condition for fb users.
if condition for fb logged in users being
Code:
<if condition="$bbuserinfo[fbuid]">
and this snippet for users fb id
with knowing these you can expand on this even further, i have only begun to play around with this and will keep you updated if i find anything else
note: i will not provide support for the code placement in your theme, i gave placement for stock theme, which is the best spot for the main theme. any highly customized themes were the vb navbar looks TOTALLY different you may have to play with it to get it perfect but if your navbar looks kinda default it should work good.
also my question in the previous post still stands if anyone could help with that.