Reputation: 1120
I have a joomla 1.5 installation and for some reason when ever i put in an iframe into the site joomla strips it out.
I copy and past this code into the code editor and chose save and it will remove it. How do i make it stop this?
<iframe src ="client_login.html" width="100%" height="300px">
<p>Your browser does not support iframes.</p>
</iframe>
Upvotes: 1
Views: 7808
Reputation: 11
After trying Whitelist in Article manager, and use iframe plugins and not working, sourcerer
plugin did it. Use the [[ ]]
to replace <
and >
.
Upvotes: 1
Reputation: 2407
I ran into the same problem when trying to embed Google map widgets into articles. The solution that I found was to do the following:
Now obviously this solution has one glaring problem: you're not going to want to do this for groups the general public will fall into. In my case, it was just for "Super Administrator" so I considered it an acceptable risk.
You can easily toggle the user editor on and off, so if you only have to add such content sparingly it shouldn't be too terribly annoying. The other advantage here is that this is a stock Joomla! 1.5 solution so future upgrades shouldn't break this workaround, and it doesn't require an extension which may impact performance.
Upvotes: 4
Reputation: 1120
I had tried plugins before to do this but none of them seemed to work either. I found a REALLY simple plugin thats works perfect.
http://extensions.joomla.org/extensions/style-&-design/popups-&-iframes/4144/details
To add an iframe with it all you do is {iframe}url{/iframe} you can set width and height and everything.
Upvotes: 0