Skip to main content
Elementor

How to speed up a slow site with Elementor




Elementor es el creador de sitios Web más rápido para WordPress, escrito con los estándares de código más estrictos. Sin embargo, algunos sitios web pueden tener una configuración que provoque una carga lenta.

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 – Factores como la memoria, el ancho de banda, la ubicación del server en relación con el Username, etc., tienen un gran impacto en la velocidad del sitio. Los servicios de alojamiento gratuito o compartido suelen ser la causa de un sitio lento.
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 – Cualquier uso de scripts externos, es decir, Google maps, recuento de acciones de Facebook, imágenes de Avatar, todo esto ralentiza considerablemente la carga de una página.

Puede desactivar Google Fonts, Font Awesome y Eicons, por ejemplo, agregando las siguientes líneas de código a su archivo functions.php en su tema hijo.

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: De forma predeterminada, los íconos de Font Awesome solo se cargarán en las páginas donde los ha utilizado, por lo que FA no se cargará en páginas que no utilicen ningún ícono de Font Awesome. Esto trae un rendimiento más rápido y una velocidad de página más rápida a su sitio, lo que puede beneficiar su SEO y la experiencia de sus usuarios.
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 – Los complementos hacen que WordPress be más lento. Si no está utilizando un plugin determinado, apáguelo y elimínelo.
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. Utilice un plugin de almacenamiento en cache how 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.