Support

Search results for ""

Sorry, no results found. Perhaps you would like to search the documentation?
All Topics
Jim

How to disable ‘Undo’ for inline editing?

Hi there,
For some reason, the ‘undo’ function isn’t working in my setup, which is fine for my case. However, I need to at least hide that little ‘undo’ icon. Any recommendations? Your css is very specific and is overriding my


.cacie-undo {
    display:none;
}

Is there a more direction method?

8 years, 7 months ago
David Mosterd
Developer

Hi Jim,

You can make the rule important:


.cacie-undo {
    display: none !important;
}

This works on my installation when I include this in a stylesheet that is loaded in the admin using the admin_enqueue_scripts action.

8 years, 7 months ago

You must be logged in to reply to this topic.