Quote:
Originally Posted by Bouncer222
Well how could I make it show the usergroup title instead?
|
Hi there
To change this just open the file vbhsignature_maker.php and
find
PHP Code:
$usertitle = $vbulletin->userinfo['usertitle'];
and replace with
PHP Code:
$usergroupinfo = $vbulletin->db->query_first("SELECT * FROM " . TABLE_PREFIX . "usergroup WHERE usergroupid='".$vbulletin->userinfo['usergroupid']."'");
$usertitle = $usergroupinfo['title'];
Hope this helps you