Okay, here's the situation. I just installed vB Blogs and everything is working great however, $template_hook[postbit_userinfo_right_after_posts] is not playing nice with my postbit_legacy template - (screenshot one).
I know I need to wrap the $template_hook in the following div class...
Code:
<div class="info">$template_hook[postbit_userinfo_right_after_posts]</div>
...which works just fine (screenshot two), but for those members who do not have blog entries, all they get is a blank box (screenshot three).
To fix this I know that I need to wrap the entire thing with and if statement, like so...
Code:
<if condition="$show['infraction']"><div class="info">$vbphrase[infractions]: $post[warnings]/$post[infractions] ($post[ipoints])</div></if>
The problem is, I have no idea what to use in the condition: <if condition="$show['infraction']">.
Any ideas?