vote up 0 vote down star

Umbraco CMS stripping ALT tags from images when content saved

Umbraco is taking this < img alt="Your Title - for example Mr., Mrs., Ms." src="../media/21283/q16x16.gif" width="16" height="15" />

and turning it into this. <img alt="" src="/media/21283/q16x16.gif" width="16" height="15" rel="16,15" />

If I alter the alt tag after this processing then the alt tag is saved.

flag
Whch version of Umbraco are you using, and what are you using to enter your content (I'm assuming the WYSIWYG rich text editor). – Tim Saunders Aug 21 at 11:51
Using version 3.03 its apparently modified/bugfixed. I am adding html vis the html button in the editor, which embeds this within the WYSIWYG editor – Yucel Aug 21 at 12:20

1 Answer

vote up 0 vote down

My guess is this has something to do with the 'validElements' setting in TinyMCE (the wysiwyg editor)

in version 4 this is edited in the /config/tinyMCEConig.config file. Look for validElements. It could be the same in 3.03?

Each allowed HTML tag along with it's allowed attributes is listed in this section in the config file. Ensure you have a something like this in there:

img[id|dir........border|alt=|title.......]

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.