M
Asked
I use the HTML editor, insert the Youtube embed code, the video displays in the editor. But, when I post the topic, the video is no longer present.
I know there is a simple solution and I know the script can embed videos like it does on your demo site.
Can anyone tell me what should I do? Everything else works 100%
I know there is a simple solution and I know the script can embed videos like it does on your demo site.
Can anyone tell me what should I do? Everything else works 100%
- MSAnsweredHello,
Please edit the `app/libraries/Tec.php` and add `iframe` to `strip_tags` 2nd argument. It should look like
```php
strip_tags(
$this->encryptMetaTags($str),
'<iframe><span><a><br><p><b><i><u><img><blockquote><ul><ol><li><hr><pre><code><strong><em><table><tr><td><th><tbody><h3><h4><h5><h6>'
)
```
Thank you - Login to Reply