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
Works now after clearing the browser cache. The design has also solidified. It was at an image field's page. (Clearing the site cache had no effect). Hereby fixed, thank you...
1.30.1 - inbuilt Token Browser rows not expanding
Ow, it was the browser cache. The site cache (or cron) didn't do it. A good old devil in the details. :-) Thanks for the input!
1.30.1 - inbuilt Token Browser rows not expanding
I'm not seeing that issue (I just spinned out a fresh installation with 1.30.2). What's really weird is that you still have the "less / more" which shouldn't be there. Clear caches? Also...
1.30.1 - inbuilt Token Browser rows not expanding
Please try clearing caches if you haven't already. Please can you say what page this is happening on as I can't reproduce with a site on 1.30.1
1.30.1 - inbuilt Token Browser rows not expanding
If I recall correctly, Backdrop will not gzip if the page content is already gzipped. And it only happens if you've enabled page compression setting. But maybe that doesn't help here...
Documentation update