-
Notifications
You must be signed in to change notification settings - Fork 48
Page builder js issue on save post in Admin #162
Comments
@pepsi10 Experiencing the same issue on 2.3.3. It's possible that the page builder module updates now mean additional UI components / data sources are required but it's difficult to tell without comparing the source. I've managed to narrow it down to the As you can see in the image below, the promise is still |
To at least get this working, changing the excerpt field to a textarea does the trick. You do lose pagebuilder/WYSIWYG functionality but given that it's supposed to be a short description this is probably better anyway. diff --git a/view/adminhtml/ui_component/blog_post_form.xml b/view/adminhtml/ui_component/blog_post_form.xml
index 980bace..9614e3a 100644
--- a/view/adminhtml/ui_component/blog_post_form.xml
+++ b/view/adminhtml/ui_component/blog_post_form.xml
@@ -301,9 +301,9 @@
<item name="config" xsi:type="array">
<item name="label" xsi:type="string" translate="true">Excerpt</item>
<item name="dataType" xsi:type="string">text</item>
- <item name="formElement" xsi:type="string">wysiwyg</item>
+ <item name="formElement" xsi:type="string">textarea</item>
<item name="template" xsi:type="string">ui/form/field</item>
- <item name="wysiwyg" xsi:type="boolean">true</item>
+ <item name="wysiwyg" xsi:type="boolean">false</item>
<item name="imports" xsi:type="array">
<item name="visible" xsi:type="string">blog_post_form.blog_post_form:is_short_content</item>
</item>
|
possible fix magento/magento2-page-builder#304 |
I came across 2 issues after upgraded to Magento 2.3.3. The second issue after upgrading to 2.3.3 is that the settings cog icon for all of the elements does not load the modal window to allow you to make the changes. This can be fixed with the following patch file: After applying both of these patches I can now use the module as expected on 2.3.3 I have had to change the prefixes of the patch files from ".patch" to ".log" otherwise they would not upload, so if you change them back it should allow you to apply the patches |
Thanks @MattFluidDigital I referred your patches for the issue I was having with more than 1 WYSIWYG on category page which prevented me saving categories giving error Page Builder was rendering for 5 seconds without releasing locks
Full field for anyone facing similar issue.
|
After upgrade Magento to ver 2.3.2 -p2 when try to save a post in admin
Admin -> Content -> Miravit -> Blog Post -> edit a post
there is js error:
Also post edit form is loaded really slowly.
Checked with 1.0.31 and 1.0.33 module-blog versions.
The text was updated successfully, but these errors were encountered: