-
Hi, Great starter theme and love the concept of using components for building Wordpress sites. I have just one question though, I have just tried using an external form plugin like 'contact form 7' and 'Ninja Forms' and both do not work correctly in the Flynt starter theme. The forms do not render when using the shortcodes in the content areas of the block components, it is as if the javascript for the plugins is not loading. See attached screen shots. Is there something i need to do to maybe the build process of the site in webpack. I do not have any other plugins activated other than ACF. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I managed to get this to work. It is because of the
|
Beta Was this translation helpful? Give feedback.
I managed to get this to work. It is because of the
wp_kses_post
.In the twig file,
{{ contentHtml|e('wp_kses_post') }}
change to{{ contentHtml }}
.wp_kses_post
sanitizes allowed html tags.