widgetfactory / jce

JCE - A Content Editor for Joomla
https://www.joomlacontenteditor.net
GNU General Public License v2.0
35 stars 12 forks source link

Image manager url bug #47

Closed ghost closed 5 years ago

ghost commented 5 years ago

There are no parameter to hide url line in Image manager jce

How can we not display this line in red ?

ryandemmer commented 5 years ago

This is not currently possible.

I might add this as an option JCE 2.8

ghost commented 5 years ago

Thanks Ryan it would be great, now this is very confusig to our users Is it posible to get this as an option in JCE 2.7.14 ?

ryandemmer commented 5 years ago

Is it posible to get this as an option in JCE 2.7.14 ?

No, 2.7.14 is ready for release tomorrow and no new features are being added (this is not a bug)

ghost commented 5 years ago

Ryan, maybe you know what file we need to edit to not display this line in red ? while waiting for JCE 2.8

ryandemmer commented 5 years ago

Add a file called plugin.css in /media/jce/css/ containing the following:

[data-plugin="imgmanager"] #src {
    display: none;
}
ryandemmer commented 5 years ago

Or better yet:

[data-plugin="imgmanager"] #image_tab > div > div > div:first-child {
    display: none;
}
ghost commented 5 years ago

Ryan thank you