Skip to main content
Elementor

How to speed up a slow site with Elementor




Elementor is the fastest website builder for WordPress, written to the strictest code standards. However, some websites may have settings that cause slow loading.

Here are the most common ways to deal with a slow Elementor site:

Common causes of a slow site / item

There are several possible causes for a site or publisher to show slow performance, each should be examined:

Servers - Factors such as memory, bandwidth, location of the server in relation to the user, etc., have a great impact on the speed of the site. Free or shared hosting services are often the cause of a slow site.
Media (images, videos, etc.) - Any image you place within your site slows it down, especially if the image is placed in areas that are always loaded like the header and footer. Always make sure to upload images that are not too large (less than 1MB is a good rule of thumb). Use tools like
TinyPNG to reduce the size of your images.
External scripts - Any use of external scripts, i.e. Google Maps, Facebook share count, Avatar images, all of this considerably slows down the loading of a page.

You can disable Google Fonts, Font Awesome, and Eicons, for example, by adding the following lines of code to your functions.php file in your child theme.

For Google sources:
add_filter ('elementor / frontend / print_google_fonts', '__return_false');

For Font Awesome:
add_action ('elementor / frontend / after_register_styles', function () {foreach (['solid', 'regular', 'brands'] as $style) {wp_deregister_style ('elementor-icons-fa-'. $style);}}, twenty );
	
Note: By default, Font Awesome icons will only load on pages where you've used them, so FA won't load on pages that don't use any Font Awesome icons. This brings faster performance and faster page speed to your site, which can benefit your SEO and your users' experience.
Only the CSS and fonts from the icon family you actually use are loaded. So, only un-queue Font Awesome if you really plan on not using any Font Awesome icons.
If you get out of the queue
Font Awesome, icons will no longer show on any of your pages.

For Eicons:

add_action ('wp_enqueue_scripts', 'remove_default_stylesheet', 20); function remove_default_stylesheet () {wp_deregister_style ('elementor-icons'); }
	
Accessories - Plugins make WordPress slower. If you are not using a certain plugin, turn it off and remove it.
Topic - A good theme shouldn't slow down a site, but unfortunately many themes do. A well-coded theme uses scripts and methods to reduce the size of its files. Switching between themes and seeing the effect can give you a good indicator of whether the theme is the culprit.

Tests you can run

  • Check why your website is slow on page speed analyzers like Google Page Speed ​​Insights and GTmetrix.
  • Disable all plugins besides Elementor and Elementor pro and check if it improves page speed.
  • Switch to

    TwentySixteen (one of the default WordPress themes)
    .
  • Create a page with the Canvas template and test your speed again.
  • After following these steps, run a speed test and check for improvements.

Speed optimizations you can run

1. Use a caching plugin like Rocket WP and Self-optimize or any other cache plugin that meets your needs.

2. Use a CDN service like CloudFlare.

2. Check with your hosting provider about possible causes of the site being slow on the server side.

3. Change the loading method of the editor.

4. Reduce the size of the images.

5. If you have developer knowledge, we recommend that you check the ping speed of your servers and analyze the load times of the different elements to identify the cause of the slowness.

R Marketing Digital