Quote:
Originally Posted by Distance
Hey this adds to the right hand side of the username, any way to have it on the left?
|
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']
);