Remember DBT does not support customizations to it's products, so use this at your own risk.
You can create the following plugin to give yourself some:
AdminCP > Plugins & Product > Add New Plugin
Product: vBulletin
Hook Location: postbit_display_complete
Title: Manual USM Postbit Integration
Execution Order: 5
Plugin is Active: Yes
Plugin PHP Code:
PHP Code:
$opts =& $this->registry->options;
$backup = array($template_hook['postbit_userinfo_left'], $opts['dbtech_status_enabled'], $opts['dbtech_status_moodenabled']);
foreach (array('status', 'mood') AS $i => $which)
{ //for both types separately
if ($backup[$i + 1])
{ //only enabled individually
$opts['dbtech_status_enabled'] = !$i;
$opts['dbtech_status_moodenabled'] = $i;
$template_hook['postbit_userinfo_left'] = '';
require(DIR . '/dbtech/status/hooks/postbit_display_complete.php');
$template_hook['dbtech_' . $which] = $template_hook['postbit_userinfo_left'];
}
}
list($template_hook['postbit_userinfo_left'], $opts['dbtech_status_enabled'], $opts['dbtech_status_moodenabled']) = $backup;
unset($opts, $backup);
That will give you access to these variables for use in your postbit/_legacy templates:
HTML Code:
{vb:raw template_hook.dbtech_status} and {vb:raw template_hook.dbtech_mood}
Turn off the original Postbit Integration plugin from USM when ready, or swap between them. Should be safe from upgrades as well.