Quote:
Originally Posted by Alan_SP
You need to create plugin as ozzy47 explaind. After you have this plugin created you can use {vb:raw template_hook.dbtech_status} and {vb:raw template_hook.dbtech_mood} wherever you want it in your postbit (you don't use postbit legacy).
For this effect you need to edit your postbit template.
Find:
HTML Code:
<div class="username_container">
<vb:if condition="$post['userid']">
{vb:raw memberaction_dropdown}
{vb:raw post.onlinestatus}
<vb:else />
<span class="username guest">{vb:raw post.username}</span>
</vb:if>
Edit it so it looks like:
HTML Code:
<div class="username_container">
<vb:if condition="$post['userid']">
{vb:raw memberaction_dropdown}
{vb:raw post.onlinestatus}
{vb:raw template_hook.dbtech_status}
<vb:else />
<span class="username guest">{vb:raw post.username}</span>
</vb:if>
In your picture you didn't included online status, so I placed status after online status, you could choose to have online status after it. Or don't have it at all (just delete it from template).
|
Ok, thank you very much, the first part I got it, now I need to position the state on the same line dl (Nick, online status) to make it like the picture, I tried various configurations with CSS but I always stay in top nick and attached to the avatar.
Thank you very much.