You need to edit file: /dbtech/status/hooks/postbit_display_complete.php
You have this line twice, you'll need to change it on both places:
PHP Code:
$template_hook ['postbit_userinfo_left'] .= $mood->render ();
You can use first next hook (it's not right after avatar) postbit_userinfo_right_after_posts, or you can create your own hook right after avatar in your postbit (probably legacy, but it could be in either templates)
For example, right after avatar in postbit legacy template you create hook to look like this:
HTML Code:
{vb:raw template_hook.postbit_right_after_avatar}
Hook name is intentionally descriptive, it could be different, whatever you like, but you need to know what name you use.
After that change line on both places to suite to hook you'll use.
If you want to use existing hook:
PHP Code:
$template_hook ['postbit_userinfo_right_after_posts'] .= $mood->render ();
Or newly created just after avatar:
PHP Code:
$template_hook ['postbit_right_after_avatar'] .= $mood->render ();
Mind names of hooks and that's it. :up: