Hello,
Thank you for reaching out.
For now, please try adding below code to your theme’s function.php file to hide Imagify from admin bar:
add_action('wp_before_admin_bar_render', function() {
global $wp_admin_bar;
$wp_admin_bar->remove_node('imagify'); // This removes the Imagify menu.
});
Best Regards,
@wp_media
Are there plans to bring this back? To have to go through 100+ website to add this code is not feasible.
Thanks
Hi,
Thank you for your reply.
Unfortunately, no. You may try the shorter version of the workaround as below:
add_filter( ‘pre_get_imagify_option_admin_bar_menu’, ‘__return_false’ );
Best Regards,
@wp_media
Can you explain the logic with removing this option – which was merely a checkbox – and why it is not being added? The current admin bar link is completely useless and unnecessary and just adds clutter.
This is crazy to me.
@wp_media I would also like to know the logic behind removing this option. It doesn’t make any sense. Almost all plugins have admin options to remove or hide admin bar links.
I agree with @viablethought that it is kind of crazy why this was removed (and yes, I know about the filter).