• Resolved bdeirhiba990

    (@bdeirhiba990)


    Hello, I want to add an iframe inside the elementor media grid premium, but it’s not showing even when inspecting.

    • This topic was modified 3 years, 5 months ago by bdeirhiba990.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    >> premium <<

    You’re using a commercial/premium plugin, so please use their official support channel. We feel they are best equipped to support their products.

    https://elementor.com/support/

    Commercial products are not supported in these forums.

    Thread Starter bdeirhiba990

    (@bdeirhiba990)

    This happens because they escaped the HTML insert text fields in the elementor widget, but you can add this code in functions.php:

    `add_action(‘init’, ‘add_iframe_to_tags’,11);
    function add_iframe_to_tags() {
    global $allowedposttags;
    $allowedposttags[‘iframe’] = array(
    ‘src’ => array(),
    ‘height’ => array(),
    ‘width’ => array(),
    );
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘iFrame is not showing’ is closed to new replies.