Thought I'd share this for others who are upgrading from Drupal 7 to Backdrop.
Sometimes after upgrading the admin menu could have menu items in the wrong place. Usually this is because the menu was probably messed up on your Drupal 7 site. If you're okay with losing the custom menu items in the "management" menu, this is what you need to do to reset it. (Following this thread https://drupal.stackexchange.com/questions/48515/how-to-completely-wipe-and-rebuild-drupal-menus).
I'm going to take the easiest approach for most people. (More experts may want to do this via the CLI).
- Backup your database!
- Download devel module and install. https://backdropcms.org/project/devel
- Go to Development > Execute PHP (/admin/devel/php).
- Then execute the following:
db_query("DELETE FROM {menu_links} WHERE module = 'system'");
db_query("DELETE FROM {menu_links} WHERE menu_name = 'management'");
menu_rebuild();
The admin menu should now be reset and look more normal.
Recent comments
To add a summary of event details to the list below the title and customize the way the time is displayed. If this is part of the library then I guess the easiest way is to create a list...
FullCalendar Views - way to modify list view?
AFAIK, this is part of the FullCalendar library and it doesn't create a separate View Display. If you want to customise the look and feel, you will need to target the elements with CSS....
FullCalendar Views - way to modify list view?
CSS - font-weight: bold. If in the future you want to remove the bold for that field on all pages of the site, changing the formatting of all pages is very difficult, unlike changing the CSS...
Use text editors in Summary Field
thanks! you understood me perfectly. Displays was the place to go... now it seems so obvious! thanks!!@
How to switch on/off taxonomy titles within a node?
Hi @geoma If I've understood you correctly: Go to /admin/structure/types/manage/institutions/display/default For the "County" field, select the Label to "...
How to switch on/off taxonomy titles within a node?