Hey @johndbb
At this very moment, the only thing you can do is to edit Imagify core files.
This could be just a temporary work-around and it will be overwritten whenever you update the plugin:
In the inc/admin/upload.php
file, you will find the _imagify_atttachments_filter_dropdown()
function. You can comment out the 3 lines to do with counting shown here:
function _imagify_attachments_filter_dropdown() {
if ( ! Imagify_Views::get_instance()->is_wp_library_page() ) {
return;
}
// $optimized = imagify_count_optimized_attachments();
// $unoptimized = imagify_count_unoptimized_attachments();
// $errors = imagify_count_error_attachments();
$status = isset( $_GET['imagify-status'] ) ? wp_unslash( $_GET['imagify-status'] ) : 0; // WPCS: CSRF ok.
And then just below, you will need to modify inside the
foreach ( $options as $value => $label ) {
to look as follows:
foreach ( $options as $value => $label ) {
echo '<option value="' . $value . '" ' . selected( $status, $value, false ) . '>' . $label .
//' (' . ${$value} . ')
'</option>';
}
Note that when applied, it will not show the number of images in (x) any longer next to the items in that filter drop-down, and you should be able to search for images.
Our developers are looking for the best solution, but I still can’t give you any estimate when it could be delivered.
Let me know if this worked.
Best Regards
Marko