Skip to content

Commit 5510cf9

Browse files
committed
MC-3445: Warning for disabling PB module
1 parent 59b1ad7 commit 5510cf9

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

app/code/Magento/PageBuilder/docs/install.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
1. [Composer installation](#composer-installation)
99
1. [GitHub installation](#github-installation)
1010
1. [Activation](#activation)
11+
1. [Uninstall PageBuilder](#uninstall-pagebuilder)
1112
1. [Troubleshooting](#troubleshooting)
1213
3. [Contribution guide]
1314
4. [Developer documentation]
@@ -118,6 +119,40 @@ Follow these steps to activate PageBuilder in the Admin:
118119
4. Under **Advanced Content Tools**, select **Yes** for **Enable Page Builder**.
119120
5. Click **Save Config**
120121

122+
## Uninstall PageBuilder
123+
124+
Before you uninstall the PageBuilder module, we recommend deactivating the editor in the Admin and migrate content.
125+
The editor will be deactivated, but the module can continue to render the content while you migrate away from PageBuilder.
126+
127+
The following side effects occur if you uninstall the PageBuilder module without migrating the content:
128+
129+
* Content that uses JavaScript functionality provided by PageBuilder will not work
130+
* Pages with full width layout will display blank content
131+
132+
### Steps for disabling and removing PageBuilder
133+
134+
Follow these steps to disable the PageBuilder module and remove it from your system:
135+
136+
1. Disable the PageBuilder module and update Magento using the following command:
137+
138+
``` bash
139+
php bin/magento module:disable Magento/PageBuilder
140+
php bin/magento setup:upgrade
141+
```
142+
143+
2. Use one of the following methods to remove the PageBuilder files from your system:
144+
145+
* If you used the manual GitHub installation method:
146+
147+
``` bash
148+
cd app/code/Magento && rm -fr PageBuilder
149+
```
150+
* If you installed PageBuilder using composer:
151+
152+
``` bash
153+
composer remove Magento/PageBuilder
154+
```
155+
121156
## Troubleshooting
122157

123158
### Common access problems

0 commit comments

Comments
 (0)