Here's something I came up with.....
PHP Code:
if (!function_exists('postbit_bg_injection')) {function postbit_bg_injection($subject)
{
global $bg_injection;
$bgcolor = "#000000";
$search = array('<div class="userinfo">','<div class="postbody">');
$replace = array(
'<div class="userinfo"\'.((is_member_of($post,array(6)))?\' style="background-color:'.$bgcolor.'"\':\'\').\'>',
'<div class="postbody"\'.((is_member_of($post,array(6)))?\' style="background-color:'.$bgcolor.'"\':\'\').\'>'
);
$bg_injection = true;
return str_replace($search,$replace,$subject);
}}
if (!$bg_injection) {$vbulletin->templatecache['postbit_legacy'] = postbit_bg_injection($vbulletin->templatecache['postbit_legacy']);}
There are several things you have to replace.
First,
array(6) should be an array of groups you want to apply this to.
Second,
$bgcolor should be changed.
This does not seem to get ALL areas of the postbit, but I gotta go to work in a few, so maybe you can find the last little bit. XD
P.S., I put this on the
parse_templates hook, but it could probably go elsewhere.
(It's a shoddy job, but I JUST started learning this templatecache stuff.... and this actually showed me just how useful it can be to fiddle with it.)