HERE IS THE FIX FOR VB BLOGS
ok i though i would share this
but for everyone getting the error when you go to view blogs
this is what you need to do to fix that
go to plugin manager
look for Cloud > Global Start
then replace everything with :
HTML Code:
if (THIS_SCRIPT == 'blog' OR THIS_SCRIPT == 'blog_usercp' OR THIS_SCRIPT == 'blog_subscription' OR THIS_SCRIPT == 'blog_search' OR THIS_SCRIPT == 'blog_search' OR THIS_SCRIPT == 'blog_report' OR THIS_SCRIPT == 'blog_post' OR THIS_SCRIPT == 'blog-newattachment' OR THIS_SCRIPT == 'blog_inlinemod' OR THIS_SCRIPT == 'blog_callback' OR THIS_SCRIPT == 'blog_attachment' OR THIS_SCRIPT == 'blog_ajax' OR THIS_SCRIPT == 'blog_external') {
} else {
$vbulletin->datastore->fetch(array('tagcloud'));
$vbulletin->templatecache['tag_cloud_box'] = str_replace('$vbphrase[tag_cloud]', 'Tag Cloud', $vbulletin->templatecache['tag_cloud_box']);
require_once(DIR . '/includes/functions_search.php');
$tag_cloud = fetch_tagcloud('usage');
if ($tag_cloud)
{
eval('$headinclude .= "' . fetch_template('tag_cloud_headinclude') . '";');
}
}
that should solve all problems with the errors on the blogs page cause it fixed it on mine
remember to make a txt copy of what was there before you change it
although the only thing that i did was added a if command to make it so it wont run the product on the blog page
the creator of this mod should edit the files so that this is built into the mod since you really dont need a cloud in the blogs anyways
hope that helps people enjoy