magenxcommerce / module-page-builder
Page Builder module
Installs: 5
Dependents: 2
Suggesters: 2
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:JavaScript
Type:magento2-module
Requires
- php: ~7.3.0||~7.4.0
- magenxcommerce/framework: 103.0.3-p1
- magenxcommerce/module-backend: 102.0.3
- magenxcommerce/module-catalog: 104.0.3-p1
- magenxcommerce/module-catalog-inventory: 100.4.3
- magenxcommerce/module-catalog-widget: 100.4.3
- magenxcommerce/module-cms: 104.0.3-p1
- magenxcommerce/module-config: 101.2.3
- magenxcommerce/module-directory: 100.4.3
- magenxcommerce/module-eav: 102.1.3
- magenxcommerce/module-email: 101.1.3
- magenxcommerce/module-media-storage: 100.4.2-p1
- magenxcommerce/module-require-js: 100.4.0
- magenxcommerce/module-rule: 100.4.2
- magenxcommerce/module-store: 101.1.3
- magenxcommerce/module-theme: 101.1.3-p1
- magenxcommerce/module-ui: 101.2.3-p1
- magenxcommerce/module-variable: 100.4.1-p1
- magenxcommerce/module-widget: 101.2.3
- magenxcommerce/module-wishlist: 101.2.3-p1
- phpgt/dom: 2.1.6
Suggests
- magenxcommerce/module-review: 100.4.3
Conflicts
- gene/bluefoot: *
Replaces
- magento/module-page-builder: *
This package is auto-updated.
Last update: 2024-10-22 05:22:17 UTC
README
The Magento_PageBuilder module provides an enhancement for the default Magento WYSIWYG editor. It installs an alternative editor in the Admin area for building content.
The PageBuilder editor can be used on the following content pages:
- Category Pages
- CMS Pages
- CMS Blocks
- Dynamic Blocks
Enable the module
The PageBuilder module and the editor is enabled by default after installation.
The editor itself is enabled globally in the Admin area under Stores > Configuration > Content Management > Advanced Content Tool > Enable Page Builder.
This setting determines the is_pagebuilder_enabled
configuration value.
Disable the module
You can disable the PageBuilder module for a specific field by adding the following entry to a field configuration in an XML configuration file:
<item name="wysiwygConfigData" xsi:type="array">
<item name="is_pagebuilder_enabled" xsi:type="boolean">false</item>
</item>
Example
The following example disables the PageBuilder editor for the content field.
<form xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<fieldset name="content" sortOrder="10">
<field name="content" formElement="wysiwyg">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="source" xsi:type="string">page</item>
<item name="wysiwygConfigData" xsi:type="array">
<item name="is_pagebuilder_enabled" xsi:type="boolean">false</item>
</item>
</item>
</argument>
</field>
</fieldset>
</form>
Note: Disabling the editor this way overrides the value of is_pagebuilder_enabled
for the specified field.