I'm not a coder at all and I know you said you don't know but do you think something like this as a plugin would work and if so where would I stick it in?
Update: Tried this in every quoteit related hook i could find. Did absolutely nothin
PHP Code:
if (!is_object($bbcode_parser))
{
require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
}
$randomquote['value'] = $bbcode_parser->parse($randomquote["context"],0, true);
I just editted from the following code:
PHP Code:
<?xml version="1.0" encoding="ISO-8859-1" ?>
- <product productid="myspace_style_profile" active="1">
<title>Parse BBCode in Custom Profile Fields</title>
<description>Give your users the full effect by letting them use BB Code in their profile.</description>
<version>1.1</version>
<codes />
<templates />
- <plugins>
- <plugin active="1">
<title>Parse BBCode for Custom Profile Fields</title>
<hookname>member_customfields</hookname>
- <phpcode>
- <![CDATA[
if (!is_object($bbcode_parser))
{
require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
}
$profilefield['value'] = $bbcode_parser->parse($userinfo["$profilefieldname"],0, true);
]]>
</phpcode>
</plugin>
</plugins>
<phrases />
<options />
</product>