after looking into sweede's post I eliminated need for the vbulletin_config_itemstats.php and class_bbcode.php files. I also want to explain how i fixed the WYSIWYG editor problem. If you open your class_bbcode_alt.php file you find a line
Code:
class vB_BbCodeParser_Wysiwyg extends vB_BbCodeParser
{
/**
* List of tags the WYSIWYG BB code parser should not parse.
*
* @var array
*/
var $unparsed_tags = array(
'thread',
'post',
'quote',
'highlight',
'noparse',
after the var $unparsed_tags = array( line you just have to add
'item', right above thread. so it should look like this
Code:
class vB_BbCodeParser_Wysiwyg extends vB_BbCodeParser
{
/**
* List of tags the WYSIWYG BB code parser should not parse.
*
* @var array
*/
var $unparsed_tags = array(
'item',
'thread',
'post',
'quote',
'highlight',
'noparse',