Sorry, this mod has not been updated for versions beyond 3.5.3.
The key to the BBCode displaying is the Plugin in step 3:
Quote:
Hook Location: member_complete
Title: Custom Rank Image in MEMBERINFO
Plugin PHP Code:
*IMPORTANT: Again, you must replace field99 with the field Name of your newly created field in three locations in the following code:
PHP Code:
PHP Code:
if ($userinfo['field99']) { if (!is_object($bbcode_parser)) { require_once(DIR . '/includes/class_bbcode.php'); $bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list()); } $userinfo['field99'] = $bbcode_parser->parse($userinfo['field99'],3, true); }
You must replace field99 with the field Name of your newly created field in Three locations in the following code.
|
I'm not sure if or how this code was changed in later versions. Have a look at the newer class_bbcode.php parser and see if there are any clues.
Another solution might be to search for a different "BBCode in Custom Profile Fields" mod that is compatible with 3.5.5. If you find one, then you can substitute that code for the plugin in step 3.