-
Notifications
You must be signed in to change notification settings - Fork 17
Show Page Builder Content
Hai Huynh edited this page Jun 23, 2023
·
2 revisions
Go to specific Magento entity (CMS page/blocks or product ...) management page
You might see these buttons
- Migrate Now Migrate the old content - which is not compatible with Page Builder.
- Create New Create new Page Builder entity then attach it into content.
- Open Editor Open Page Builder Editor for editing
You can deactivate the Page Builder Assistance
, then back to use WYSIWYG Editor
For permanent deactivating Builder Assistance, you have set the config here to No
at
Stores > Settings > Configuration > Goomento > Page Builder > Builder Assistance > Active
Open text editor, then select the widget chosen Choose your page
Add this snippet
{{widget type="PageBuilderRenderer" identifier="page-builder-identifier"}}
Like this
<block class="PageBuilderRenderer" name="unique-block-name">
<arguments>
<argument name="identifier" xsi:type="string">page-builder-identifier</argument>
</arguments>
</block>
<?= $block->getLayout()
->getBlock('PageBuilderRenderer')
->setIdentifier('page-builder-identifier')
->toHtml(); ?>
Note:
- Replace
page-builder-identifier
alias with your actual page builder identifier - Replace
unique-block-name
alias with your actual unique block name