• Resolved Michael

    (@mdahlke)


    Plugin Version: 2.1.19

    The $html_media variable is being wrapped with esc_html which is causing HTML to display on the page instead of the image.

    File: wp-content/plugins/post-grid/templates/post-grid-hook.php
    Line: 568
    <div class="layer-media"><?php echo esc_html($html_media); ?></div>

    Should be(??):
    <div class="layer-media"><?php echo $html_media; ?></div>

    • This topic was modified 2 years, 8 months ago by Michael.

    The page I need help with: [log in to see the link]

Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘HTML media display HTML code instead of image’ is closed to new replies.