To show in vB 3.8 member info, I added the following code to the
member_profileblock_fetch_unwrapped hook:
PHP Code:
global $vbulletin;
if (THIS_SCRIPT == 'member' AND $vbulletin->options['spamer_ban_enable'] AND (is_member_of($vbulletin->userinfo, explode(",", $vbulletin->options['spamer_ban_can_use'])) OR ($vbulletin->userinfo['userid'] != 0 AND in_array($vbulletin->userinfo['userid'], explode(",", $vbulletin->options['spamer_ban_can_use_user'])))))
{
$template_hook[profile_stats_pregeneral] .= "<fieldset class=\"statistics_group\"><legend>Ban Member</legend><ul class=\"list_no_decoration\"><li><a href=\"misc.php?$session[sessionurl]do=spamcleanconfirm&u=$userinfo[userid]\">$vbphrase[spammer_ban_member]</a></li></ul></fieldset>";
}
I prefer not to edit templates, and this seems to work on my forum.
Hope it helps.