Forums
Home / Fixing WordPress / iFrame is not showing
(@bdeirhiba990)
3 years, 5 months ago
Hello, I want to add an iframe inside the elementor media grid premium, but it’s not showing even when inspecting.
(@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.
3 years, 3 months ago
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(), ); }