Small question . i hope you understant.
How do I get that If user has no likes, nothing is see under the avatar ?
Now if user has now likes there reads:
Thankeds :0 <---i dont want show this
my code is this:, i think the red one needs some changes.
<vb:if condition="$post['userid']">
<!-- Thanks -->
<vb:if condition="$post['post_thanks_thanked_times'] == 1">
<tr><td class="legacystats">
<dt><span class="legacytext">Thanked</dt> <dd>{vb:raw post.post_thanks_thanked_times}</span></dd>
</td></tr>
<vb:else />
<tr><td class="legacystats">
<dt><span class="legacytext">Thanked</dt> <dd>{vb:raw post.post_thanks_thanked_times}</span></dd>
</td></tr>
</vb:if>
<!-- /Thanks -->
</vb:if>
|