@ toucan42
I had this problem too, you need to apply 2 fixes.
1.
Go into the Admin CP
Plugins & Products ->
Plugin Manager ->
Admin: Process Featured Blog Entry
admin_options_processing [Edit]
Change Code:
Code:
if (version_compare($vbulletin->options['templateversion'], '3.7.0 Alpha 1', '>='))
to Code:
Code:
if (defined('YUI_VERSION'))
Member Profile (3.7): Add Blog Tab
member_build_blocks_start [Edit]
Replace the contents with: Code:
Code:
require_once(DIR . '/includes/class_profileblock_blog.php');
$blocklist['blog'] = array(
'class' => 'Blog',
'title' => $vbphrase['blog'],
);
eval('$template_hook[\'memberinfo_css\'] .= "' . fetch_template('blog_member_css') . '";');
Member Profile: Add Blog Links to standard MEMBERINFO display
member_complete [Edit]
Change Code:
Code:
if (version_compare($vbulletin->options['templateversion'], '3.7.0 Alpha 1', '<') AND $userinfo['bloguserid'])
to Code:
Code:
if (!defined('YUI_VERSION') AND $userinfo['bloguserid'])
Member Profile: Inform member.php of blogs and new templates
init_startup [Edit]
Change Code:
Code:
if (version_compare($vbulletin->options['templateversion'], '3.7.0 Alpha 1', '>='))
to Code:
Code:
if (defined('YUI_VERSION'))
2.
Open includes/blog_init.php and go down to the bottom.
Replace
PHP Code:
PHP Code:
if (version_compare($vbulletin->options['templateversion'], '3.7.0 Alpha 1', '>='))
with
PHP Code:
PHP Code:
if (defined('YUI_VERSION'))
Hope this will solve your problem