Hi @atalaura
Thank you for contacting us and I am sorry to hear about the issue.
Can you please try to add the following to your wp-config.php file (before the “That’s all! Stop editing…” message) to increase the amount of memory (this can be a larger number if your host/server will allow)and check again:
define( ‘WP_MEMORY_LIMIT’, ‘256M’ );
Feel free to let me know how it goes.
Best Regards,
Ioanna
The option you are talking about is already at 256.
Hi @atalaura
Thank you for the update.
Can you please clarify if you have a big number of images on your Media Library?
If so there is a big number of images you can check the following suggestion as when you are viewing pages related to Imagify, Imagify counts the number of optimized and unoptimized images you have. In most cases, there’s no issue, but we have seen a few instances where a high optimized image count slows the loading of the page down.
If you need, you could try adding the following code to your theme’s functions.php file:
function pfx_limit_imagify_optimize_count( $count ) {
return 1;
}
add_filter( 'imagify_count_optimized_attachments', 'pfx_limit_imagify_optimize_count' );
add_filter( 'imagify_count_attachments', 'pfx_limit_imagify_optimize_count' );
add_filter( 'imagify_count_unoptimized_attachments', 'pfx_limit_imagify_optimize_count' );
add_filter( 'imagify_count_saving_data', 'pfx_limit_imagify_optimize_count' );
add_filter( 'imagify_count_error_attachments', 'pfx_limit_imagify_optimize_count' );
Let me know if the above helps.
Best Regards,
Ioanna