---
title: "Disable the PageBuilder module for a specific field in Magento 2"
url: "https://dolphinwebsolution.com/disable-the-pagebuilder-module-for-a-specific-field-in-magento-2"
date: "2023-07-23T07:17:10+05:30"
modified: "2023-08-29T06:49:49+05:30"
author:
  name: "Jigar Patel"
categories:
  - "Magento"
  - "Magento2"
word_count: 285
reading_time: "2 min read"
summary: "In Magento 2, the PageBuilder module is responsible for providing a drag-and-drop interface for creating and editing CMS content. If you want to disable the PageBuilder module for a specific field,..."
description: "In Magento 2, the PageBuilder module is responsible for providing a drag-and-drop interface for creating and editing CMS content. If you want to disable the ..."
keywords: "pagebuilder,specific field,remove,cms page, Magento, Magento2"
language: "en"
schema_type: "Article"
related_posts:
  - title: "How to create UI Form and UI Grid in Magento 2"
    url: "https://dolphinwebsolution.com/how-to-create-ui-form-and-ui-grid-in-magento-2/"
  - title: "How Much Does Magento Development Cost in 2026?"
    url: "https://dolphinwebsolution.com/blog/magento-development-cost/"
  - title: "How To Get Administrators Role’s User Ids programmatically in Magento 2"
    url: "https://dolphinwebsolution.com/how-to-get-administrators-roles-user-ids-programmatically-in-magento-2"
---

# Disable the PageBuilder module for a specific field in Magento 2

_Published: July 23, 2023_  
_Author: Jigar Patel_  

![Disable the PageBuilder module for a specific field in Magento 2](https://dolphinwebsolution.com/wp-content/uploads/2023/07/pagebuilder-1.png)

In Magento 2, the PageBuilder module is responsible for providing a drag-and-drop interface for creating and editing CMS content. If you want to disable the PageBuilder module for a specific field, you can achieve this by set **is\_pagebuilder\_enabled** **False** in your the field’s definition in your 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>```bash

```
```

### 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.

Now execute the below command and go to the system configuration page:

**php bin/magento c:c**
#### Result:-
#### ![Best AI Agent Development Companies in India (2026)](https://dolphinwebsolution.com/wp-content/uploads/2023/07/Default-Category-ID-2-Categories-Inventory-Catalog-Magento-Admin-1.png)
I Hope, This instruction will be helpful for you.

If you have any difficulties regarding this blog, do consider posting them in the Comments section below!

I’m here to help.

**Thank you!**


---

_View the original post at: [https://dolphinwebsolution.com/disable-the-pagebuilder-module-for-a-specific-field-in-magento-2](https://dolphinwebsolution.com/disable-the-pagebuilder-module-for-a-specific-field-in-magento-2)_  
_Served as markdown by [Third Audience](https://github.com/third-audience) v3.5.3_  
_Generated: 2026-08-26 06:14:34 UTC_  
