- π¨π¦Canada joelpittet Vancouver
Hmm, this seems more like a support request than a bug report. Not sure what exactly needs to be done here, but itβs probably way easier to manually configure on the new site rather than trying to migrate it.
I'm doing a D7 to D9 migration, and I'm programmatically placing a menu into Layout Builder using the "menu_block" contrib module. The data migrates just fine, but it won't display unless I go into the Layout Builder interface and click "Update" on that block. When I code it to use the core "system_menu_block" instead of this module's "menu_block," it displays fine without this manual extra step.
So, my question is: is this a bug, or is there an extra step I need to do when migrating to a menu_block instance in Layout Builder?
In my custom migration process plugin, I have the following code snippet to place the previously migrated menu as a section component into Layout Builder:
$section = new Section();
$component = new SectionComponent($this->uuid->generate(), $paneconfig['region'], [
"id" => "menu_block:main"
"label" => "Main menu"
"provider" => "menu_block"
"label_display" => 0
"follow" => 1
"follow_parent" => "active"
"level" => "1"
"depth" => "0"
"expand_all_items" => false
"parent" => "main:"
"suggestion" => "main"
"label_type" => "block"
"label_link" => 0
"context_mapping" => []
]);
$section->appendComponent($component);
Closed: won't fix
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Hmm, this seems more like a support request than a bug report. Not sure what exactly needs to be done here, but itβs probably way easier to manually configure on the new site rather than trying to migrate it.