Quote:
Originally Posted by WDS
could somebody please explain how to do it?
|
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).