08/08/2024
Elementor has added some annoying image optimization ads and AI buttons all over the editor without an option to remove them.
I've added following code snippet to get rid of (most) ads. Use at your own risk:
function hide_elementor_annoyingads_admin() {
?>
/* Target general Elementor notifications */
.elementor-control-notice.elementor-control-notice-type-info,
.e-notice--cta {
display: none !important;
}
/* Target specific Image Optimizer elements (adjust as needed) */
[class*="e-con-image-optimizer"] { /* Use an attribute selector for broader targeting */
display: none !important;
}
Send a message to learn more