PDA

View Full Version : Forum Blocks non-resizeable?


MrFurious
08-04-2015, 06:37 AM
Is there a mod out there to make it so that the forum blocks on the forum homepage can not be minimized/hidden?

MarkFL
08-04-2015, 07:46 AM
What you can do is create a plugin as follows:

Product: vBulletin

Hook Location: forumhome_complete

Title: Disable sidebar minimization

Execution Order: 5

Plugin PHP Code:

$show['sidebar'] = 1;
$close_sidebar = 0;
$sidebar_class = 1;

Plugin is Active: Yes

Click Save.

Then, in your "additional.css" template (for each active style) add the following selector:

#sidebar_button_link {
display: none;
}

MrFurious
08-04-2015, 10:59 PM
Thanks, I'll give that a try.

MrFurious
08-06-2015, 01:58 AM
Mark, just wanted to let you know that worked out perfectly. Thanks again!

setishock
01-25-2016, 02:31 PM
That is a perfect solution. Thanks MarkFL.