commerce-docs / pagebuilder-examples

Page Builder example modules for you to download, install, and learn from.
Other
101 stars 80 forks source link

On Magento 2.4.5 FAQ items doesn't works #37

Closed webdreamsnc closed 1 year ago

webdreamsnc commented 2 years ago

On Magento 2.4.5 FAQ items doesn't works: FAQ Items are not rendered on backend pagebuilder

midhung123 commented 2 years ago

Am also facing this issue pagebuilder example not working on version 2.4.5

adambois commented 2 years ago

I am using Magento 2.4.5 with PHP8 and the issue seems to be with self closing html tags. For example: <render args="getOptions().template" /> needs to be changed to <render args="getOptions().template"></render>. After I added proper closing tags where needed I got it working. Hope this helps.

midhung123 commented 2 years ago

yes it seems to be working thanks @adambois

webdreamsnc commented 2 years ago

Thank you @adambois, now it seems to be working!

dcbaldwin1 commented 1 year ago

Also have this same problem with the Quote module. Closing the tags in preview.html does the trick!

bdenham commented 1 year ago

Fixed by @eksiugur in PR #38 from eksiugur/37-faq-fix.

And thank you @adambois for providing an earlier solution.