You need to be logged in to post in the forum - Log In

An active JCE Pro Subscription is required to post in the forum - Buy a Subscription

Support is currently Offline

Official support hours
Monday to Friday
09:00 - 17:00 Europe/London (BST)

Please create a new Ticket and we will get back to you as soon as we can.

#103014 Advanced tab in File Manager and Media Manager

Posted in ‘Editor’
This is a public ticket

Everybody will be able to see its contents. Do not include usernames, passwords or any other sensitive information.

Latest post by Joris on Wednesday, 12 February 2020 09:11 GMT

Joris
Is it possible to remove the 'Advanced' tabs in the File Manager and Media Manager (for making front end editing clearer)?
I know a css solution, but it doesn't work in the iframe of the manager windows. Can I add this anywhere to jce iframe?

In the Image Manager there are many options (tabs and fields) for 'cleaning' the interface (very pleasant work for publishers).

TIA and kind regards,
Joris

Ryan
Create a plugin.css file in media/jce/css/ and add the following:

.uk-tab li:nth-child(3) {
    display: none;
}
to target a specific dialog (Image Manager, File Manager etc.) change the selector to:

[data-plugin="imgmanager_ext"] .uk-tab li:nth-child(3),
[data-plugin="filemanager"] .uk-tab li:nth-child(3) {
    display: none;
}

Ryan Demmer

Lead Developer / CEO / CTO

Just because you're not paranoid doesn't mean everybody isn't out to get you.

Joris
Nice. Thank you.

Is it possible to to this just in frontend? And not in backend editor?
Or based on profile or usergroup?

TIA an kind regards,
Joris