Moodle Plugins directory: Boost navigation fumbling | Moodle.org
Boost navigation fumbling
Since the release of Moodle 3.2, Moodle core ships with a shiny new theme called "Boost". While Boost does many things right and better than the legacy theme Clean, it also has some fixed behaviours which don't make sense for all Moodle installations. One of these behaviours is the fact that the look and feel of the nav drawer (the menu which appears when you click on the hamburger menu button) is hardcoded and can hardly be configured by administrators.
Please see README file for details about the usage and features of this plugin.
This theme has reached end of life.
This plugin will not be upgraded for Moodle 4.x. Please consider using our Moodle 4 theme theme_boost_union which supports several aspects of this plugin's feature set.
No support in the comments section on this page
Please note that we don't provide any support for this plugin in the comments section on this page.
We appreciate your commendation and reviews for this plugin in the comments. For bug reports and support requests, please read the extensive information in the plugin's README file first and create, if needed, a ticket in the bug tracker which is linked below.
Thanks for your cooperation.
Re 3.9: Is there any plan to add the 'content bank' link as one of the items to remove from the menu?
thanks
$coursehomenode->showinflatnavigation = false;
$coursehomenode->display = false;
$coursehomenode->hide();
Only remove() would work, but of course it also removes the node from breadcrumbs, which I don't want.
Thank you for your help
I am trying to install this plugin after reading a blog about it. However, I am having an issue with its dependency. It is requiring block_myoverview to be installed, and I cannot find that from anywhere. Do you know how to get this dependency? Thank you.
Is there a way i could add custom root nodes for each role, e.g student, tutor, manager and admin? Thank you.
In the meantime, I found this code that worked for me hiding the Home link. Add it to Site administration/Appearance/Boost/Advanced settings/Raw SCSS
/* Hide the Home tab */
a.nav-link[href="{{REPLACE WITH YOUR URL}}/?redirect=0"] {
display: none!important;
}