|
8 | 8 | 1. [Composer installation](#composer-installation)
|
9 | 9 | 1. [GitHub installation](#github-installation)
|
10 | 10 | 1. [Activation](#activation)
|
| 11 | + 1. [Uninstall PageBuilder](#uninstall-pagebuilder) |
11 | 12 | 1. [Troubleshooting](#troubleshooting)
|
12 | 13 | 3. [Contribution guide]
|
13 | 14 | 4. [Developer documentation]
|
@@ -118,6 +119,40 @@ Follow these steps to activate PageBuilder in the Admin:
|
118 | 119 | 4. Under **Advanced Content Tools**, select **Yes** for **Enable Page Builder**.
|
119 | 120 | 5. Click **Save Config**
|
120 | 121 |
|
| 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 | + |
121 | 156 | ## Troubleshooting
|
122 | 157 |
|
123 | 158 | ### Common access problems
|
|
0 commit comments