The issue is caused by this line in the template file content-single-event_listing.php
line 114
echo esc_attr(apply_filters(‘wpem_the_content’, $event->post_content));
esc_attr() escapes the HTML and prevents WordPress from parsing blocks.
Changing it to:
echo apply_filters(‘the_content’, $event->post_content);
fixes the issue and renders the content correctly for me.
Tested on WordPress 6.x with multiple themes (Kadence, Twenty Twenty-Five).
Hello, I can confirm that this correction works.
I assume it will be included in the next update?
Thank you!
echo apply_filters( ‘wpem_the_content’, $event->post_content );
This worked for me
Hello,
We’d like to inform you that issue has been resolved in the latest version 3.3.5.
Regards,
WP Event Manager.