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
Not sure if this will do what you want or provide an example of a module that does something similar, https://github.com/backdrop-contrib/feef . There was some discussion in zulip about the...
Best way to embed media with CKEditor
I realized that the oembed module does what I was looking for, but it's only for CKEditor 4. It's also unmaintained, last updated 6 years ago.
Best way to embed media with CKEditor
Thanks for your suggestions. Yes, I can embed using iframes, which is what I am doing currently. It's just not as quick and easy as a media button. I see your point about using a field,...
Best way to embed media with CKEditor
Changing the line in eva-display-entity-view.tpl.php from <?php print $rows; ?> to <?php print render($rows); ?> solves the problem. I will add this comment to the issue I opened...
Difficulty using EVA with leaflet maps
Accepted your answer for what it is but i dont like how it is. Meanwhile ive found other more important problems and gave up.
No way to translate site information