Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Selectable panel items
This discussion is related to the Panel Box Toggles addon.

It would be nice to be able to select which panel items to collapse. I may try to implement this. E.g. I'd like to leave categories and latest posts expanded by default, but collapse the rest
0
Comments
to do what you want.
just identify the id or class.
Personally I like the idea of plugins panel modules to add a class to the Box Class
instead of adding a id like LatestPostList does since for some bizarre reason someone may want to add two modules.
class="Box YourAdditonalBox">';
just change the js in plugin.
from
use a not for every module you don't want collapsed at inception.
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
Thanks yet again @peregrine !
you are welcome.
otherwise known as thanks, YAP!
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
see below.
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
or you could do it via config.php
change the js in PanelBoxToggles
change in class.panelboxtoggles.plugin.php
from
$Sender->AddCSSFile($this->GetResource('design/panelboxtoggles.css', FALSE, FALSE));
to
then add to config.php
$Configuration['Plugins']['PanelBoxes']['ExcludeBoxes'] = ".BoxCategories, #LatestPostList";
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
one more fix to get the arrow aligned correctly whether boxes are initially collapsed or open
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.