
-
AuthorPosts
-
May 16, 2025 at 6:32 pm #1484354
Sonia
GuestI have been an Enfold customer for years, and lately I’ve been experiencing significant website slowdown issues. The programmer mentions problems with the theme. On a page where, for example, the main uploaded photo weighs 150 kb, Enfold publishes one of 500 kb. All photo weights have increased. The hosting provider confirms that there are issues and that I’m using the maximum CPU abnormally. All plugins have been deactivated for testing, and there is no conflict. I need someone to explain why this latest version is creating major problems. My business is practically blocked, causing significant damage. I look forward to your feedback as soon as possible. Thank you.
May 30, 2025 at 3:56 am #1484848Hey Sonia,
Sorry for the delay. The theme automatically sets the quality of uploaded images to 100%, but this should not be the reason why the generated files are larger than the originals. Did you install any plugins related to images or compression?
If necessary, you can reset the image quality to the WordPress default by adding this code to the functions.php file.
add_filter("avf_jpeg_quality", "avf_set_quality_mod", 9999, 1); add_filter("avf_wp_editor_set_quality", "avf_set_quality_mod", 9999, 1); function avf_set_quality_mod($quality) { $quality = 70; return $quality;}
You may need to regenerate the thumbnails afterward.
— https://wordpress.org/plugins/force-regenerate-thumbnails/
Make sure to create a site backup or restore point before regenerating the thumbnails.
Best regards,
IsmaelMay 31, 2025 at 1:18 pm #1484898Good morning,
I was reading through the Enfold support tickets and saw that many others have experienced the same issue with images being displayed in larger sizes than those originally uploaded.
We are not using any image-related plugins because we already upload optimized images.
You can check, for example, the first image on this page:
We uploaded it at 141 KB, but Enfold displays it at over 500 KB.
In addition, developers have worked to optimize the site as much as possible, and despite this, it still exceeds the CPU usage limit. They believe the issue might be due to the Enfold theme being poorly optimized and too heavy. Unfortunately, I use Enfold on four websites. I thought it was an excellent theme, so it’s quite concerning to hear from professionals that it may not be suitable for a more complex website.
Do you have any idea why there is such excessive CPU usage?
June 2, 2025 at 5:29 am #1484956Hi,
@soniavoice: Would you mind providing the original source of the image so we can upload it on our end? When we uploaded a 4.8MB PNG image directly to an Image element using the Advanced Layout Builder, the resulting full-size thumbnail is only 2MB — less than half the original size. It’s possible that is a plugin or custom script interfering with the WordPress media uploader on your installation.Best regards,
IsmaelJune 2, 2025 at 6:55 pm #1484986Hi, in the folder (attached link) I put inside my original picture uploaded on wordpress and the bigger one generated after the upload.
June 3, 2025 at 5:57 am #1484993Hi,
Thank you for the update. We were able to reproduce this on our end. To lower the file size, you can reset the default image quality back to 82 or lower by using the filter that we mentioned above.
add_filter("avf_jpeg_quality", "avf_set_quality_mod", 9999, 1); add_filter("avf_wp_editor_set_quality", "avf_set_quality_mod", 9999, 1); function avf_set_quality_mod($quality) { $quality = 82; return $quality;}
After adding this code, the file size of the largest thumbnail decreased by more than half. If you want to make it smaller, use a lower quality value.
For more info about the filter, please check this link: https://developer.wordpress.org/reference/hooks/jpeg_quality/
Best regards,
IsmaelJune 3, 2025 at 11:25 am #1485016Good morning, the page https://easyzanzibar.com/dove-alloggiare-a-zanzibar/ loads a large image even when opened on mobile. In your test, you show me that it should use a 218 Kb image in the desktop slide, while my optimized image is 141 kb. If it then always uses the large image on mobile, what kind of optimization is that?
The technical programmers who are trying to solve the problem of a very slow site and CPU that exceeds the limit have sent me reports stating: ‘Enfold is a heavy and outdated theme for a site like yours.’
If this is the case, I have to eliminate Enfold from all four of my websites and completely redo them.
Does it turn out that Enfold creates problems with slow loading and high CPU demand for sites like ours?
AI answers:
Regarding your question about Enfold:
Yes, it is a known issue that the Enfold theme can sometimes cause slow loading times and high CPU usage for some websites. This can be due to several factors:
Theme Features: Enfold is a feature-rich theme, and while this offers a lot of flexibility, it can also lead to more code and assets that need to be loaded, potentially slowing down the site. Some of these features, if not used, can still contribute to the load.
Image Handling: As you’ve noticed, how the theme handles images across different devices can impact performance. If the theme isn’t correctly serving optimized images for mobile, it can significantly slow down loading times on those devices.I would like to understand from you if there is anything that can be done to avoid redoing everything
June 3, 2025 at 12:56 pm #1485024For example, Lazy Load doesn’t start working from the photos at the bottom of the page but already blocks the first image, presenting the user with an unloaded site, with a hole where the photo should be. It should slow down the loading of the last photos, not the first one. The technicians have explained all the problems with the theme and that it causes significant slowdowns.
It seems we will be forced to redo the entire site.
However, I wonder why you continue to make updates without improving performance.June 4, 2025 at 4:24 am #1485051Hey!
As mentioned earlier, the theme is configured to set a higher image quality than the WordPress default, which explains why the generated thumbnails are larger in file size. It’s also worth clarifying that image uploading and compression are handled entirely by WordPress, not the theme. This should be the same across all WordPress installations, so what you’re seeing isn’t specific to this theme.
Have you tried adjusting the default compression level to 60 or lower? This should help further lower the file size of generated thumbnails and optimize them.
After lowering the quality value to 60 or below, you can further enhance site performance by installing an image optimization plugin such as ShortPixel, Imagify, or Smush. This is a fairly standard practice in WordPress optimization, so it’s a bit surprising it wasn’t already suggested by your technical team.
For more information on site optimization, please feel free to refer to the following links.
— https://gtmetrix.com/wordpress-optimization-guide.html
— https://wpengine.com/resources/improve-wordpress-site-speed/Regards,
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.