• paywall

    (@paywall)


    3.3.4 introduces a bug where HTML is showing in the event description area.

Viewing 4 replies - 1 through 4 (of 4 total)
  • najarrajan

    (@najarrajan)

    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).

    chaazaam

    (@chaazaam)

    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

    Plugin Support WPEM Support

    (@wpem)

    Hello,

    We’d like to inform you that issue has been resolved in the latest version 3.3.5.

    Regards,

    WP Event Manager.

Viewing 4 replies - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.