Menu SideBar - hiding plans - Printable Version +- Logic Machine Forum (https://forum.logicmachine.net) +-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1) +--- Forum: Visualization (https://forum.logicmachine.net/forumdisplay.php?fid=9) +--- Thread: Menu SideBar - hiding plans (/showthread.php?tid=945) |
Menu SideBar - hiding plans - Monolithos - 16.08.2017 Hi, Is there a way to prevent showing of specific Plans (and maybe even Levels) in the automatically generated sidebar? I need some of them hidden in the menu sidebar but still accessible via a pagelink on some of the floorplans. Thanks for any advice. Kind regards, Hendrik RE: Menu SideBar - hiding plans - admin - 17.08.2017 You can hide certain links via Custom CSS (change 1 to your plan id): Code: #menu-plan-1 { display:none; } RE: Menu SideBar - hiding plans - DGrandes - 02.12.2020 Hi, I have 2 questions -Is there any way to hide second level in touch visualization using css or javascript? -Is there any way to rename pages and second level using css or javascript? RE: Menu SideBar - hiding plans - admin - 02.12.2020 You can hide plans via CSS (change 1 to your plan ID): Code: #menu-plan-1 { display: none; } Change plan text via JS: Code: $(function() { RE: Menu SideBar - hiding plans - DGrandes - 03.12.2020 (02.12.2020, 10:54)admin Wrote: You can hide plans via CSS (change 1 to your plan ID): Thanks so much!! I knew how to hide pages but I don´t know how to hide second level "folder". If folder is empty in levels/plan, this folder doesn´t appear, but if I hide this plans (inside this folders) by css or javascript, this folder appear in menu (empty). Is there any way to hide this? Is there any way to change this folders name? Thanks! RE: Menu SideBar - hiding plans - admin - 03.12.2020 You can only hide it via Custom JS, replace 156 with plan ID of the plan that is right after the second level folder (see the screenshot below). Code: $(function() { RE: Menu SideBar - hiding plans - DGrandes - 03.12.2020 (03.12.2020, 08:24)admin Wrote: You can only hide it via Custom JS, replace 156 with plan ID of the plan that is right after the second level folder (see the screenshot below). Thank so much!!! It works |