Quote:
Originally Posted by stomph
To get the status on the left of the username, I changed the plugin 'GTOline: Template Changes On Member List' to this:
Code:
/*
// status right of username
$vbulletin->templatecache['memberlist_resultsbit'] = str_replace(
'$userinfo[musername]</a>',
'$userinfo[musername]</a> $userinfo[onlinestatus]',
$vbulletin->templatecache['memberlist_resultsbit']
);
*/
// status left of username
$vbulletin->templatecache['memberlist_resultsbit'] = str_replace(
'<a href=\"member.php',
'$userinfo[onlinestatus] <a href=\"member.php',
$vbulletin->templatecache['memberlist_resultsbit']
);
|
Right on! Works great!!!
Recommend for any future versions the ability to swap out left and right via options as well as a different icon for on and offline.
I would also like to see version checking added to this to make it really perfect.
This is a great mod. Thanks again.:up: