Quote:
Originally Posted by kylek
I would like to ask the same thing, need to move activity stream out of the first tab position.
|
Try this
AdminCP > Plugins & Products > Add New Plugin
Product: vBulletin
Hook Location: member_build_blocks_start
Title: Load Visitor Messages Tab By Default
Execution Order: 1
Plugin PHP code:
Code:
if (!$vbulletin->GPC_exists['tab'])
{
$vbulletin->GPC['tab'] = 'visitor_messaging';
}
Plugin is Active: Yes
There is probably a way to do it by modifying one of the Activity Stream plugins but I don't use this so can't check.
I use a similar method on my site to load the About Me tab first.