Remove "img" tag Solved

User's avatar
Regina C. L.
14:50 Jul 10, 2014
Hello, is it possible to remove the html tag "<img>" after upload?
All I need is the file name, without any html tags.

Thank you
Support team avatar
JS+
16:28 Jul 13, 2014
Hello,

Yes, its easy.
It is described here: doksoft.com/soft/ckutils/bundle-customize.html

In simple words: default tepmlate for inserting is:
config.doksoft_image_template = '<img src="{IMAGE}" />';
where {IMAGE} is substituted URL.

Just change it to :
config.doksoft_image_template = '{IMAGE}'
in your `config.js` and you get what you want.