make a new plugin:
Title: Profile BB Code
Hook Location: Member_Complete
Plugin PHP
Code:
if ($userinfo['field11'])
{
if (!is_object($bbcode_parser))
{
require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
}
$userinfo['field11'] = $bbcode_parser->parse($userinfo['fieldX'],0, true);
}
and it should work..
|