Hope you dont mind, I have made a slight change to the code
in the changes to functions.php
change
PHP Code:
$rankpip = "<img src=$rank[rank_graphic]>";
$post[usertitle]="$post[usertitle]<br>$rankpip";
//END MULTI RANK HACK
to
PHP Code:
$rankpip = "<img src=$rank[rank_graphic]>";
$rankid = "$rank[rank_name]";
$post[usertitle]="$post[usertitle]$rankid<br>$rankpip";
//END MULTI RANK HACK
Now go into the vb control panel and remove all user titles, and then you need to edit any user groups that have their own titles, such as moderators and administrators, what you will need to do here is stick a <BR> on the end. like so
The original hack will only display the pips and will keep the user titles that vb uses as standard, the above makes a slight change so that it displays the rank name
It may be a sloppy way of doing it, I am not sure but it does the job, what I would rather have it do is display administrator titles instead of the rank, but I havent worked that bit out yet
Thanks again LoB