Question How to remove first activity block from member info

Status
Not open for further replies.

angeljs

Customer
I was just wondering how to remove the first activity block from the member info page, as shown in the image below:

d11h26m22s1.jpg
 
That's a vBulletin 4.2.0 feature and 100% unrelated to vBActivity :)

I have no idea if it's possible to remove that block, sorry :(
 
Log into the Admin CP.

On the side menu expand "Products & Plugins"

Click on "Plugin Manager"

At the very bottom there is a link to "Add New Plugin"

On that page put in the following information-

Product: vBulletin (this should be default)
Title: Tab Fix
Hook: member_build_blocks_start (from a drop-down list)
Execution Order: 5 (default value)

To make Visitor Messaging the default past this into the PHP Code box:

PHP Code:
Code:
[LEFT][COLOR=#000000][COLOR=#007700]if (![/COLOR][COLOR=#0000bb]$vbulletin[/COLOR][COLOR=#007700]->[/COLOR][COLOR=#0000bb]GPC_exists[/COLOR][COLOR=#007700][[/COLOR][COLOR=#dd0000]'tab'[/COLOR][COLOR=#007700]])
{
    [/COLOR][COLOR=#0000bb]$vbulletin[/COLOR][COLOR=#007700]->[/COLOR][COLOR=#0000bb]GPC[/COLOR][COLOR=#007700][[/COLOR][COLOR=#dd0000]'tab'[/COLOR][COLOR=#007700]] = [/COLOR][COLOR=#dd0000]'visitor_messaging'[/COLOR][COLOR=#007700];
} [/COLOR][/COLOR][/LEFT]

Or to make About Me as the default paste in this instead:

PHP Code:
Code:
[LEFT][COLOR=#000000][COLOR=#007700]if (![/COLOR][COLOR=#0000bb]$vbulletin[/COLOR][COLOR=#007700]->[/COLOR][COLOR=#0000bb]GPC_exists[/COLOR][COLOR=#007700][[/COLOR][COLOR=#dd0000]'tab'[/COLOR][COLOR=#007700]])
{
    [/COLOR][COLOR=#0000bb]$vbulletin[/COLOR][COLOR=#007700]->[/COLOR][COLOR=#0000bb]GPC[/COLOR][COLOR=#007700][[/COLOR][COLOR=#dd0000]'tab'[/COLOR][COLOR=#007700]] = [/COLOR][COLOR=#dd0000]'aboutme'[/COLOR][COLOR=#007700];
} [/COLOR][/COLOR][/LEFT]

Save the plugin and you should be done- go to a profile page to test.


Post found here:: Show "About Me" tab in profile by default - Page 2 - vBulletin.org Forum
 
Last edited:
Status
Not open for further replies.

Similar threads

Legacy vBActivity & Awards

vBulletin 3.8.x vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
1,730
Customer rating
0.00 star(s) 0 ratings
Back
Top