How to drastically improve website speed? Using nginx and varnish

[et_pb_section fb_built=”1″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]The loading time of a website is the time needed for a browser to load the complete content of that website. So improve website speed.

It is common knowledge that website speed can play a vital role in how a company performs: the longer the website loading time, the higher the chances of users abandoning your website and moving to a competitor’s website. Specifically, data shows that 40% of people abandon a website that takes more than 3 seconds to load, hurting your conversion rates by as much as 7% for every single second delay in page response. Thus, it is essential to improve the website performance by ensuring a fast loading speed for your website.

How to do that, you ask? You are in luck. We have written two articles to explain how to achieve higher speed with your website: in the first one, we will discuss how two popular tools, Nginx and Varnish, can let your website achieve higher speeds, and show and example implementation. In the second one, we will focus on Chinese specificities and make sure your website can achieve higher speeds given the differences in the local ecosystem. But let’s get back to the topic of this article – how do we make a website faster with Nginx and Varnish? Let’s find out.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How to make a website faster?

There are different ways to make your website faster, but generally speeding up a website requires faster content delivery via servers that are nearby to avoid request-response latency. This is especially true for global websites, where multiple servers are necessary to balance the load and serve the content from the closest available location. Balancing load or delivering the content in an optimized manner usually requires complex and expensive solutions. Luckily, Nginx and Varnish let you manage these factors with minimal configuration. How exactly? Let’s find out
[/et_pb_text][et_pb_image src=”https://blog.gotmenow.com/wp-content/uploads/2021/09/how-to-improve-website-Loading-speed-2.jpg” alt=”improve website speed” title_text=”improve website speed” _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_image][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

1. Improve website speed with Nginx

What is Nginx?

Started off merely as a web server, Nginx is now an open source software with numerous features dedicated to serving content faster and in an optimized manner. Nginx provides services like a web server with load balancing, multi-level caching, performance monitoring, Web Firewall and others. Nginx is known to be powering over 40% of the busiest websites around the world.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]Nginx started with the goal of creating the fastest web server around the world with all the necessary optimization algorithms implemented within, and maintaining that excellence is still a central goal of the project. Nginx consistently beats Apache and other servers in benchmarks measuring web server performance.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]Nginx has two variants. The standard Nginx server is free to use and comes with the basic caching and optimized delivery features. Nginx Plus is a premium version with additional features like the firewall and load balancer. Both versions are the best-in-class application servers. Nginx has been used as high-end application delivery solutions for high-traffic and content-intensive websites such as Dropbox, Netflix, and Zynga. Based on the data available from Nginx’s website, as of today over 367 million websites throughout the world, including some of the world’s busiest websites, rely on Nginx and Nginx Plus to deliver their content quickly, reliably, and securely.
[/et_pb_text][et_pb_button button_url=”https://bit.ly/gotmenow-whatsapp” url_new_window=”on” button_text=”Connect With Us” button_alignment=”center” _builder_version=”4.9.10″ _module_preset=”default” box_shadow_style=”preset1″ box_shadow_color=”#0C71C3″][/et_pb_button][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How can Nginx improve website performance?

Optimized content delivery is one of the most important requirements when it comes to speeding up a website. One way Nginx can improve performance is to cache static assets within the server cache memory. These static assets include common content like the scripts and stylesheets used by every page, default images like logos and banners and also some static pages. It has been observed that nearly 30 percent of data on the modern web pages are static. Such content should be cached in order to improve the performance of Nginx as a web application server.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]In addition to caching, one can look into enabling reverse proxy server configuration. A reverse proxy server helps to optimize the delivery by utilizing an additional machine to handle the requests. This machine is connected over a high-speed connection with the main application server that serves only the necessary data. This improves the processing time of the application server and eventually speeds up the website.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Going further with performance optimization on Nginx

But it doesn’t stop here. Nginx can be further optimized thanks to its support of the latest technologies such as:

  • Brotli compression: a more advanced compression algorithm than gzip with a descent browser support.
  • HTTP/2 Protocol: out of the box HTTP/2 protocol for more low-latencies and parallel HTTP connections
  • PageSpeed: a Nginx plugin that will automatically improve performances of your website

Thanks to these advanced features, NGINX is a powerful tool that cannot be ignored when it comes to performance optimization and should be on your to-do list when considering optimizing your website.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

What are the drawbacks of using Nginx?

Even though Nginx is one best tool around, the drawback with using its built-in micro cache is the fact that assets cannot be purged from cache individually using a standardized API. Luckily, this issue can be solved by using another tool: Varnish.
[/et_pb_text][et_pb_image src=”https://blog.gotmenow.com/wp-content/uploads/2021/09/Website-speed-optimization.jpg” alt=”website speed” title_text=”website speed” align=”center” _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_image][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

2. Improve Website speed with Varnish

The performance improvement gained by using micro caching on Nginx can be further improved by using Varnish. This pairing will not only allow you to slightly improve the speed but mostly it will allow you to retain your flexibility when managing the content of your application.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

What is Varnish?

Varnish is a web server with caching implemented at its core and an easy-to-implement addition to the previous Nginx setup. It can also be customized to reduce the origin-server load by writing a simple algorithm to manage the server requests. Unlike Nginx, it uses blocking system calls that make it easier to implement caching and configure load-distribution

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Varnish has a threaded architecture but avoids using event loops. This is the main reason for choosing it over Nginx when turnaround time is important. With proper configuration and tuning, Varnish has been noted to serve content at very high speed. Another important reason to choose Varnish is the possibility of purging individual resources from the cache, using one of the many open-source libraries available for the different backend platforms. This is not easily doable when using Nginx microcache.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How to Accelerate your Business Digitally during the Global Pandemic

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How to properly tune up your configuration?

Although it might seem tough to configure Varnish, with the key performance metrics easily available, Varnish can be easily tuned to perform at its best. In order to fine-tune your Varnish configuration to serve at the optimal speed, there are some factors to look at, most notably:
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

  • Amount of client requests
  • Cache hits – The number of times content gets delivered from cache
  • Thread metrics – The cycle of thread creation, queuing and success or failure
  • Backend metrics – Frequency of failure, hardware health, and CPU consumption

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

What are the drawbacks of using Varnish?

Due to the fact that Varnish is a specialized software only dedicated to caching, it lacks many common web server capabilities, the most noticeable one being the inability of implementing SSL. Therefore, it does not allow you to use HTTPS protocol. This can, of course, be solved by pairing Varnish with a reverse proxy that acts as TLS termination, in our example Nginx. How to implement this configuration?
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How to Improve the Loading Time of Your WordPress Site

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default” custom_padding=”||0px|||”]

How to leverage Varnish and Nginx – An example implementation

The following diagram provides an overview of an example implementation with a Chinese user and an International user trying to access the same resources on a website.

In the example we are using a different domain to direct the traffic, however, some DNS services allow to use GeoIP detection to balance the traffic to different servers based on the location so the same domain can be used if the DNS service chosen supports this option.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]In this diagram, we can see how Nginx acts mainly as a TLS termination (managing the incoming https traffic) and is set as a reverse proxy that sends all the traffic to varnish. In other cases, specific rules (based on paths, parameters, etc..) can be set to redirect the traffic directly to the origin server.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]As mentioned above both Nginx and Varnish have load balancing capabilities, so multiple varnish servers and nginx servers can be set for the same domain as well.

An additional improvement to this setup can be achieved by using Nginx to fetch data from the origin server before storing the cached version in Varnish, allowing us to do some simple replacements in the content received (for instance URLs of blocked resources) for the different markets, without impacting or having to modify anything on the Origin server.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How to Speed Up WordPress?

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Improving website speed in China – a different scenario

In China, the scenario of website loading is completely different. China internet regulation is a highly secluded territory of the global network. Numerous APIs including Google-owned APIs are blocked in China and this is a major roadblock in optimizing the speed of a website. Today, nearly 40% of the website around the world are CMS-based and almost every single one of them internally uses JQuery and Google fonts which rely on Google servers for loading. In China, these fonts or scripts are blocked from loading, so the website does not get rendered as expected. Moreover, even for the other third-party APIs, the Chinese network setup increases the loading time to allow the API script to pass through. This eventually leads to poor performance of foreign websites in China.
[/et_pb_text][et_pb_button button_url=”http://www.gotmenow.com/” url_new_window=”on” button_text=”Visit Us” button_alignment=”center” _builder_version=”4.9.10″ _module_preset=”default” filter_saturate=”147%” filter_brightness=”61%” box_shadow_style=”preset1″ box_shadow_horizontal=”11px” box_shadow_color=”#0C71C3″][/et_pb_button][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]In addition to the URL based blocking, China has its own web to manage the DNS data and every request made from China needs to pass through its highly protected firewalls. There is a high probability that the DNS data of certain domains might not be synced in China as the relevant data server might be blocked due to detected illegal activities.

As discussed, it is challenging to speed up a foreign website in China without any potential block. Hence, apart from the conventional techniques like using Nginx or Varnish, one needs to go through several other processes like acquiring an ICP license, getting a hosting within China and optimizing the content for a better delivery within China. These techniques will be discussed in the next article.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Conclusion

The major factor determining the optimization of a website loading speed lies at its core – the web application server. By correctly implementing and leveraging Nginx and Varnish, a website speed can be greatly improved – however, more techniques should be used when approaching website speed optimization in China. More details on how should we deal with these challenges will be covered the next part of this series.
[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_post_slider posts_number=”5″ include_categories=”2″ bg_overlay_color=”#0C71C3″ _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_post_slider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_social_media_follow _builder_version=”4.9.10″ _module_preset=”default” text_orientation=”center”][et_pb_social_media_follow_network social_network=”facebook” url=”https://www.facebook.com/Gotmenownrp” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#3b5998″ follow_button=”off” url_new_window=”on”]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”twitter” url=”https://twitter.com/Gotmenow3″ _builder_version=”4.9.10″ _module_preset=”default” background_color=”#00aced” follow_button=”off” url_new_window=”on”]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”linkedin” url=”https://www.linkedin.com/in/gotmenow-soft-solutions/” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#007bb6″ follow_button=”off” url_new_window=”on”]linkedin[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”instagram” url=”https://www.instagram.com/gotmenow_soft_solutions/” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#ea2c59″ follow_button=”off” url_new_window=”on”]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]

How to Improve the Loading Time of Your WordPress Site

[et_pb_section fb_built=”1″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_row _builder_version=”4.9.10″ _module_preset=”default” admin_label=”Row”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

You can not afford to waste even a single second on the internet. Speed matters, when it comes to improve website loading time. In fact, if your WordPress site is lethargic and forces the audience to wait, then you will have to face the negative impact right away. You can notice an increase in the bounce rate, poor search rankings, and decrease conversion.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Fortunately, you have too many solutions to tackle this problem. WordPress as a platform offers you several options for optimizing your site and making it faster and more responsive because faster websites improve user experience, increase your website traffic, and help with SEO.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Why is Page Speed Important?

Studies show that from 2015 to 2020, the average human attention span has dropped from 15 seconds to 12 seconds.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

When the audience lands on your site for the first time, you only have a few seconds to capture their attention and make them brood over your website. If your site is not loading properly, the dashboard might become difficult to handle affecting your work and efficiency.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How To Check And Improve Your Website Speed Through Your Web Host

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Besides that, the visitors will leave your website giving negative feedback and never come back, even they will never recommend anyone to visit your site. This will lead to a big loss for your site.

Not only that, but Google also includes site speed in the ranking algorithm now which means the speed of the site plays an important role in search ranking.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

So if your website takes too much time to load, it means you are losing your audiences and rankings in search engines too.

Search engines rank websites that have great loading speed. So if you want to improve your position in the SERPs improving speed should be your first priority.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Studies have shown the site that takes more than 3-sec to load, results in almost 47 percent of the audience to bounce off. Thus, to keep your visitors on your site, speed is very important.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Today online buyers are so impatient that they can not wait even for a second for loading the page.

Hence, if you are running an eCommerce site on WordPress then you better get ready to make major improvements to make your business more profitable and efficient. 

To sum it all up, if you want more traffic on your website, subscribers, and revenue, then you must work on making your WordPress website FASTER!

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How to Check Your Website Speed?

Often everyone thinks that their website speed is okay just because it does not seem slow on their computer.

Since you are visiting your own website, browsers like Chrome store your website in the memory, and as you search, it automatically fetches the site as soon as you start typing the address. This makes your website load instantly on your computer.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How to Speed Up WordPress?

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

However, a normal user who is visiting your website may not face the same things. In fact, the audience which is of different geographical locations will have a completely different experience. 

That is why we recommend you check your website speed. After doing your website speed test you will come to know what is good website speed you should aim for. A good website load time is under 3 sec.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

However, the faster the time of loading a page the faster revenue you will get. So, it is very important to check the website speed.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

4 Free Tools to Check WordPress Website Speed:

 

  • Google Pagespeed Insights 

Page Speed Insights is a tool by which we can analyze website performance and the content of web pages on both mobile and desktop devices and provides suggestions to improve our site.

It gives you both debugging performance issues (A lab test) and real-world user experience (Field data) which help you to solve the problems and make your site faster.

Here is the page speed result of my own website (MakeWebBetter).

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

  • Pingdom tools

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

We know that nobody likes a slow speed website. To help you with analyzing your website speed, you can use this tool called Pingdom.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

This process allows you to test your website loading speed. Plus, it rates your website based on several metrics. For example, it shows what number of requests were required and what number of redirects were performed.

It is cost-effective performance monitoring for your website. Using this, you can monitor your website uptime, performance, speed, and reliability for better user experience.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Why should you improve the website loading speed?

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

To check the performance, enter the website URL in the field on the main page, select the location, and then start the test. Maybe you have to wait for some time depending upon how many people are performing the test. And when the test is complete you will be given results.

Here is an example how Pingdom shows the speed results and suggestions.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Since the results will different each time, you will have to do this several times to get an average figure. This will give you a more comprehensive overview of how well your site performs and provide graphs into what areas of your site need to be improved.

 

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

  • GTMetrix

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Pingdom tools are an excellent way to check the performance but you can also try GTMetrix. This is another free speed checking tool that can be very helpful for your website. It works much like Pingdom, but it provides more in-depth information. It offers you better optimization and suggestions based on results.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

You can start the test by entering the URL on the page and then clicking on the test on your site. Since it is performed thoroughly, it can take more time to complete.

When the test is completed, you will get access to a lot of data. You will see how quickly your site loads, as well as other data, including the overall size.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

It shows the most basic information for making your site load faster. Depending on your theme, the images you uploaded, the plugins you’re using, and many other settings, it optimizes your site totally and gives you results to make your website work better.

Here is the result of my own website MakeWebBetter in the image given below:

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

  • Google Analytics

It is web analytics services offered by Google that tracks and reports all the website traffic. This tool is not only for marketing or SEO experts, it is a tool which helps you in gaining serious insights about your website.

Google Analytics gives you complete information about the performance of your website. It accesses all Google’s unique insights and machine learning capabilities to improve your data. And also helps you in improving your user experience.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

It offers you a range of marketing tools that will help people in ranking their website and making high revenue. This is designed to help you in tracking the overall performance of your site.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Listed WordPress Plugins To Improve Website Loading Speed

You have a number of plugins that will help your website load faster. Here are some free plugins that you can use for better website performance.

  • Autoptimize
  • WP Fastest Cache
  • W3 Total Cache
  • Jetpack by WordPress.com
  • Smush – Compress, Image Optimizer, Lazy Load, WebP Images
  • Hummingbird – Speed Optimize, Cache, Minify & Defer Critical CSS/Javascript
  • Speed Booster Pack PageSpeed & Performance Optimization

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

10 Ways To Reduce The Page Loading Time Of The WordPress Website

Till now you came to know why speed is important and how to check the speed of the site. Now I’m going to share, what more you can do to increase your website speed.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

1. Choose the Best Hosting Plan

Hosting is where your website exists. Your house furniture is like a website and your house is like a host. If your house is not built on a good foundation then your furniture could fall right through the floor.

Picking the right hosting plan is one of the first and most important steps for making your website performance better.

It might seem a good idea to select the hosting provider which has unlimited bandwidth, unlimited space, emails, domains, and more. What we fail to understand regarding this offer is that shared hosting fails to deliver good loading times on a high audience.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How To Improve WordPress Website Speed

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

When audiences access your site, your hosting provider will determine how quickly the information is passed to them. Some are simply slow. So we can say that it is up to your server what speed they are giving to your audience.

The reason behind this is a poor selection of hosting providers can nullify your efforts. Even when you optimize your site speed, it will not make much difference if your server is slow. 

For example: You can take a look at the InMotion hosting provider. 

InMotion provides faster uptime, speed, and support and other built-in speed optimization tools such as caching plugins for the better performance of your site.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Source

Some more added up features of InMotion is:

  • It seamlessly handles up to 10X traffic without slowing down the speed.
  • When you are having high traffic and it is putting a stop by slowing down our website, sit back and relax as your server will automatically adapt to your resources with its burstable RAM.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

2. Use WordPress Caching plugins

Caching plugins highly improve the user experience and make your website work faster. Thus, we can say one of the most important features to speed up your website is using a cache plugin.

Caching is important for your website because it allows you to skip most of the steps and instead of going through the whole process every time, it makes a copy of the page just after the first load and then keeps that cached version for the future visits.

So, this is the reason why we recommend cache plugins to every WordPress site owner. This can make your website much faster and efficient.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Let’s take a look at various cache plugins that you can use to boost your WordPress website:

  • W3 Total Cache
  • WP Rocket
  • WP Super Cache
  • Sucuri

We can also use monitoring plugins for WordPress which can be super helpful.

WP Umbrella is a comprehensive monitoring plugin for WordPress. It constantly checks website uptime and performance and alerts you if something goes wrong (downtime or traffic spike).

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

The plugin provides you with essential information about load times from all over the world such as time TTFB, TCP, TLS and DNS.

The thing that I like with WP Umbrella is that they also monitor WordPress PHP errors which can prevent poor performance and security. It’s a plugin that you have to install if performance matters to you!

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

3. Choose A Content Delivery Network(CDN)

A CDN is also an important factor for speeding up your WordPress site. The main feature of CDN is that it offers you the best loading time for your website no matter what kind of site you run.

The main purpose of CDN is to provide high availability and performance by distributing the service across different geographical locations ( i.e. server ) which work together to provide fast delivery of internet content.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Source

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

CDN allows you quick transfer of HTML pages, JavaScript files, images, videos, etc. The popularity of CDN is now increasing day by day. Today most of the web traffic is served by CDNs, including traffics from major sites like Amazon, Netflix, etc.

Apart from big websites, all of your blogs are also making use of this, and if you are into online marketing using WordPress, you won’t be surprised to hear that some of your favorite blogs are making use of CDN’s.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Various other features of a CDN are:

  • Improves speed.
  • Makes the server uptime better.
  • Helps in SEO optimization.
  • Improves user experience.
  • Saves you money.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How to Serve Scaled Images and Improve Website Speed & Performance in WordPress with GTMetrix

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Let us take an example:

Suppose the user visits your website and his request is redirected to the main server. It means every user who is visiting your site redirects to the main server. Hence, if multiple users try to visit the site at the same time, it results in server overloading and makes your website speed slow. So, this problem can be solved by CDN.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

4. Always Keep Your Plugins and Theme Updated

These days the majority of people are very conscious of updated software and devices. We understand that it’s easy to become numb to those messages, especially when the results of the required updates are so often invisible to the typical user.

However, when it involves WordPress, you ought to always update every aspect of your site as soon as possible.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

It’s essential not to ignore updates once they become available, whether they’re core updates for your WordPress installation or new versions of your WordPress theme or plugins. The foremost important reason for this is security as new updates will make sure that your site is safe against the newest threats.

However, keeping your site updated will make sure that it remains as fast as possible. WordPress developers are always trying to improve and update the core software to be faster and better optimized. 

By updating, you’re ensuring that each aspect of WordPress is running at peak performance.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

5. Delete Unused Theme and Plugins

As you came to know, choosing the best theme and plugins and keeping them updated is the best method to gear up your WordPress site.

Another thing that can be taken care of for optimizing speed is to delete the unused themes and plugins that are not in use.

This is the site maintenance task that you should perform regularly. Because themes and plugins that are not active on your site will take some space on your server. Keeping unnecessary content around can confuse administrators and audiences.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

There are two principles you should take into account:

  • Do not activate the plugins which are of no use.
  • You should be very careful while installing plugins because some plugins can badly trouble you.

If you will go through all the plugins of your website, you will come to know that there are some plugins that are of no use. For example, if you are using WordPress SEO by Yoast, you do not need an XML sitemap plugin.

Also, you need not download the plugins for checking the broken links of WordPress websites. You can easily check this online using the W3C Link Checker.  

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

6. Reduce Server Response Time

Slow server response affects performance. Hence, it is very important for you to understand how fast your website is loading because it has a direct impact on the traffic of your site.

The faster the loading time the more the audience will engage on your site. As we all know, the page loading time and server response time are important factors that will help your site to rank on the primary page.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

To improve your site, it is very important to reduce the server response time because if you will not reduce response time, your site may take more time to load which results in increased bounce rate i.e. (the audience will simply leave your site before your site even finishes loading).

Google PageSpeed Insights recommends TTFB( Time to First Byte) should be less than 200msas a good server response time.

TTFB which stands for (Time to First Byte), is a measurement of how much time the browser is taking before receiving its first byte of data from the server. The longer time it takes to fetch that data, the longer time it takes to display this on your page.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

You can use various tools to check this. I have taken the result of my own website MakeWebBetter in TTFB testing tools.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

7. Image Optimization

Your images can have a great impact on your WordPress site speed. The image brings the spark in your content and makes it more engaging for the viewers. As by my own experience, I can say that the content which has colorful images are more engaging than lengthy paragraphs.

However, if your images are not optimized, it can harm you instead of benefiting. Even we can say that the non-optimized images are the main reason behind the slow speed which the beginners face.

A website with non-optimized images is going to trouble your precious bandwidth, it also slows down everything and ruins the user experience.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How to Improve the Speed of Your Website?

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

So, before uploading the image whether you are uploading from mobile or desktop, make sure to optimize the image. 

Compress and edit the image using Photoshopand Gimp. Use the JPEG format to upload the image. Stop using big images that have larger sizes.

We also have some other best practices recommended by Google that will help you in optimizing images:

  • Use image CDNs
  • You can replace animation GIFs with videos
  • Do not use lazy loading images
  • Use WebP images

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

8. Always Clean your Media Library

As your site starts growing, your media library is filled with images, documents, and other files. It is usual for long-running sites to contain hundreds and thousands of image files.

Even if you use image optimization, many files can start harming your server resources. A fair amount of such files might not even be used anymore.

Identifying and deleting these media files can be an incredible pain if done manually. Fortunately, there are plugins that can help you out.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

8 Tips to Speed Up Website Loading Time to Improve User Experience

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

In this case, we recommend that you should use the Media Cleaner Plugin to clean the media files.

9. Cloud Hosting Provider

The traditional form of web hosting is shared hosting. In this, one server handles the site of multiple customers which results in a system crash. We also have other hosting providers such as VPS and Dedicated hosting. But cloud hosting is best of all.

Today 90 percent of the users use cloud hosting services for their websites.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Source

Cloud hosting is a type of hosting provider that hosts the website on its own premises, a part of which can be purchased by anyone.

Before starting the WordPress site, it’s recommended to ask your WordPress managed host provider about their product and compatibility with WordPress. They can give you the information and ideas of making your website work faster. This will help you spend less time and get more information and also help you better in optimizing your site speed.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

10. Minifying CSS and JavaScript

These rules come forward when PageSpeed Insights detects that the size of one of your resources can be reduced through minifying the JS and CSS code.

You can make your website smaller and faster by minifying these codes. This removes redundant and unnecessary data like white space, stripes comments, combine files, and optimize the various program patterns.

You can use many resources for the minification.

    • For .the minification of CSS, Nano and CSSO.
    • For the minification javascript, you can try UglifyJS

[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_post_slider posts_number=”6″ include_categories=”2″ bg_overlay_color=”#0C71C3″ _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_post_slider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_social_media_follow _builder_version=”4.9.10″ _module_preset=”default” text_orientation=”center”][et_pb_social_media_follow_network social_network=”facebook” url=”https://www.facebook.com/Gotmenownrp” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#3b5998″ follow_button=”off” url_new_window=”on”]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”twitter” url=”https://twitter.com/Gotmenow3″ _builder_version=”4.9.10″ _module_preset=”default” background_color=”#00aced” follow_button=”off” url_new_window=”on”]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”linkedin” url=”https://www.linkedin.com/in/gotmenow-soft-solutions/” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#007bb6″ follow_button=”off” url_new_window=”on”]linkedin[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”instagram” url=”https://www.instagram.com/gotmenow_soft_solutions/” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#ea2c59″ follow_button=”off” url_new_window=”on”]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]

How to Speed Up WordPress?

[et_pb_section fb_built=”1″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

WordPress is a powerful website application, but such mighty prowess can have its drawbacks. In the case of WordPress, website speed and loading times can often be adversely impacted. But with a little bit of know-how and good practices, this can easily be negated. How to speed up wordpress?

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

What slows WordPress down?

First, let’s take a look at why your installation of WordPress may be slow. There are a huge number of reasons as to why your particular website may be slow, but I’ll focus this answer on the most common issues we see time and time again.

At it’s core WordPress is a database driven application. This means that rather then relying on simple static files to serve up your website content to visitors, the content must be generated from a database. This can introduce a variety of factors that influence website speed, and is a natural consequence of working with databases.

[/et_pb_text][et_pb_image src=”https://blog.gotmenow.com/wp-content/uploads/2021/09/bigstock-Loading-Bar-Load-Waiting-Indic-123700637-edited-1.jpg” alt=”speed up wordpress” title_text=”speed up wordpress” align=”center” _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_image][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Your hosting provider is a major factor in the speed of your website. WordPress uses more server resources than a typical website, and some hosts just aren’t cut out to cope, especially the very low-cost hosting solutions you may come across. You’ve seen those 99p per month offers for example? Junk. Don’t even bother.

Themes that haven’t been coded correctly can also be a factor in slow speeds, especially if your website is using a lot of ‘fancy effects’. These may be using large, external files that must be downloaded on every page load – multiple CSS and Javascript files, for example. The site may look flashy, but you don’t want it to negatively impact the experience of your viewers by sacrificing loading times.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How To Check And Improve Your Website Speed Through Your Web Host

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Large images play a big role in slowing down your website too. You need to make sure that you aren’t uploading and inserting overly large images unless necessary, and each image should be optimised before use. Many plugins are available to take control of image size limits, and to optimise the images once uploaded.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Methods to speed up WordPress

Many speed issues can be overcome with the simple use of WordPress Plugins. Rather than delve into too much detail, we’ll list a couple of our favourite optimisation plugins to really speed up WordPress:

[/et_pb_text][et_pb_button button_text=”Connect With Us” _builder_version=”4.9.10″ _module_preset=”default” button_alignment=”center” custom_button=”on” button_bg_color=”#0C71C3″ button_bg_enable_color=”on” button_border_radius=”29px” background_layout=”dark” button_url=”https://bit.ly/gotmenow-whatsapp” url_new_window=”on” hover_enabled=”0″ sticky_enabled=”0″][/et_pb_button][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

  • For Image Optimisation, you can’t go wrong with Imsanity and EWWW. These resize and compresses every image you upload to your WordPress website resulting in smaller image file sizes and quicker load times.
  • For more advanced methods of speeding up WordPress, we recommend looking into a Caching plugin such as WP Rocket. This has a wealth of speed improvement options, and will make a very noticeable difference to your WordPress loading speed.

[/et_pb_text][et_pb_image src=”https://blog.gotmenow.com/wp-content/uploads/2021/09/unleash-the-potential-of-your-website-by-optimizing-it.jpg” alt=”speed up wordpress” title_text=”speed up wordpress” _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_image][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]*Remember to do your research on a Plugin before installation!

For anything that a Plugin can’t solve, good theme development practices must be employed. This can often be a tricky thing to diagnose if you’re unfamiliar with how websites work, but any good theme developer worth your time will have taken loading speed into consideration and this should be nothing you have to worry about. However, you may want to get a professional opinion from ProWP if you’re a little unsure.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Why should you improve the website loading speed?

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

We can help

Is your website acting a little sluggish? If you need a professional analysis and assistance with putting things right, get in touch to see how we can help.

[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_post_slider posts_number=”8″ include_categories=”2″ bg_overlay_color=”#0C71C3″ _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_post_slider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_social_media_follow _builder_version=”4.9.10″ _module_preset=”default” text_orientation=”center”][et_pb_social_media_follow_network social_network=”facebook” url=”https://www.facebook.com/Gotmenownrp” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#3b5998″ follow_button=”off” url_new_window=”on”]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”twitter” url=”https://twitter.com/Gotmenow3″ _builder_version=”4.9.10″ _module_preset=”default” background_color=”#00aced” follow_button=”off” url_new_window=”on”]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”linkedin” url=”https://www.linkedin.com/in/gotmenow-soft-solutions/” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#007bb6″ follow_button=”off” url_new_window=”on”]linkedin[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”instagram” url=”https://www.instagram.com/gotmenow_soft_solutions/” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#ea2c59″ follow_button=”off” url_new_window=”on”]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]

How To Check And Improve Your Website Speed Through Your Web Host

[et_pb_section fb_built=”1″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

The website speed operates is a critically important part of any marketing strategy. It’s a fact that how quickly your site opens for users has a big impact on things like buying decisions. In one study, over 70% of consumers said that the speed of a page had an important effect on whether or not they bought something. Here’s some information about understanding what affects your speed and what you can do to improve it through your web host.

[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

What Factors Affect Site Speed?

In general, there are two main factors. These include the website speed itself, as well as the web host server speed.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Website Speed

Many factors additionally go into each side of overall speed. For example, website speed is affected by how light your website is and how optimized you’ve made it for speed. Other factors include what software you’re using, how you optimize the code, what kind of compression you’re using for images, and other options like browser caching. There’s definitely a tradeoff in using the most flashy design elements possible and making sure that the website is “light” enough to make sure that speed is still high. The key to this is often going with a company that knows how to best optimize your site based on your specific situation.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Why should you improve the website loading speed?

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Web Hosting Server Speed

The other part of what can make your website slow is web hosting. The type of web hosting you choose has an important effect on not only the speed of the site from the perspective of potential users but on how often your site is even available at all. Going with a web host service that has almost constant uptime, lie around 99.99% is important for that reason. You need to have reliable servers that stay online and that give out your website to visitors quickly and efficiently. If both parts of website speed are set up properly, then you should have a website speed that is lightning fast and that satisfies anyone who comes by to visit.

[/et_pb_text][et_pb_image src=”https://blog.gotmenow.com/wp-content/uploads/2021/09/shoretel-teamwork.jpg” alt=”How To Check And Improve Your Website Speed Through Your Web Host” title_text=”How To Check And Improve Your Website Speed Through Your Web Host” _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_image][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Measuring Host Speed

To get a sense of how fast a hosting service is in general, first you need to have access to the service. Fortunately, many companies these days will give you a trial period where you can do this before you start paying. It’s important to make sure that you’re getting a trial with a hosting service before signing up if you want to make sure that you can do this without spending extra funds.

If you already have a hosting service, and you’re worried that it’s slow, then you can also check it right now. There are many tools online that will allow you to do this, including Bitcatcha, for example. You will get a list of response times from different parts of the world in terms of milliseconds. Sites like this one will also evaluate the hosting speed on a grade level with A+ being the highest so if you know that there’s room to improve.

In other words, after a test, if the score is poor, then it’s possible you could improve the speed from the point of view of your users just by getting a better web host. To get the best sense of speed, you should also add more specifics with some of the tests. Some web host test sites allow you to test how quickly website logins happen, for example, instead of just testing random new viewers.

How To Improve WordPress Website Speed

You can do this to test the experience of veterans to your site who are logging in to buy something. All of this can be highly useful information for evaluation. It may also tell you whether the problem is on your side, in terms of how you’ve programmed your page, or on the server-side with your web host, so that you get a better sense of where to put your efforts. Competent web marketing companies will likely be the best option for making this determination for you due to their expertise.

[/et_pb_text][et_pb_image src=”https://blog.gotmenow.com/wp-content/uploads/2021/09/photo-1587614313085-5da51cebd8ac.jpeg” alt=”How To Check And Improve Your Website Speed Through Your Web Host” title_text=”How To Check And Improve Your Website Speed Through Your Web Host” _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_image][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

The Critical Importance of Finding the Right Help for Speed

It’s difficult to overstate just how important it is to have a fast and responsive website. By some studies, over 77% of adults have a smartphone. Mobile devices often take even longer to load than desktop sites, and they are being used more often. This means that speed is often even more important than it seems like it at first.

If people think that a site is loading too slowly on a desktop, it’s often even worse on mobile. As a result, you will get a huge boost against the competition if you can maximize your speed in every way possible. The difficulty in doing this is that there are so many factors that determine eventual speed. The basic factors are just the start of it. Evaluate your website for its speed and immediately identify areas where you might be able to improve in terms of speed and responsiveness, both when it comes to the desktop as well as mobile users.

How can we improve website page speed?

More and more mobile users are joining the Internet every day, and the subtleties of how their devices interact with your website are becoming more and more important as a result. You need to have it so that many different kinds of screens of all shapes and sizes can all access your site just as easily and just as fast without any errors.

[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column _builder_version=”4.9.10″ _module_preset=”default” type=”4_4″][et_pb_button button_text=”Connet With Us” _builder_version=”4.9.10″ _module_preset=”default” button_alignment=”center” background_layout=”dark” custom_button=”on” button_text_color=”#0C71C3″ button_bg_color=”#FFFFFF” button_bg_enable_color=”on” button_border_radius=”36px” button_font=”Times New Roman||||||||” hover_enabled=”0″ sticky_enabled=”0″ url_new_window=”on” button_url=”https://bit.ly/gotmenow-whatsapp”][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_post_slider posts_number=”5″ include_categories=”2″ bg_overlay_color=”#0C71C3″ _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_post_slider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_social_media_follow _builder_version=”4.9.10″ _module_preset=”default” text_orientation=”center”][et_pb_social_media_follow_network social_network=”facebook” url=”https://www.facebook.com/Gotmenownrp” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#3b5998″ follow_button=”off” url_new_window=”on”]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”twitter” url=”https://twitter.com/Gotmenow3″ _builder_version=”4.9.10″ _module_preset=”default” background_color=”#00aced” follow_button=”off” url_new_window=”on”]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”linkedin” url=”https://www.linkedin.com/in/gotmenow-soft-solutions/” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#007bb6″ follow_button=”off” url_new_window=”on”]linkedin[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”instagram” url=”https://www.instagram.com/gotmenow_soft_solutions/” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#ea2c59″ follow_button=”off” url_new_window=”on”]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]

Why should you improve the website loading speed?

[et_pb_section fb_built=”1″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]You know what, the website loading speed is everything when it comes to creating a user-friendly website. It doesn’t make any sense, even though you have very good informative content and valuable products on your site if your website is not user friendly. That’s why I am giving you the ultimate guide for how to improve your website loading speed with simple and effective methods.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Website loading speed is another important element for on-page SEO, which impacts ranking your site on Google.

Why The Website Loading Slow?

If your website loading speed is slow and below the average speed, then it means something is not right, and you better ask the website speed optimizer services.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]If you don’t know how to do a website speed test, then there are many free tools where you can check your website speed test. Such as GTmatrix, Page speed, and Pingdom. These all are free tools, and you can use them freely for testing your website speed.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]The most reason why your website loading slowly is that your Web Hosting is not good, and you are not using CDN. but there are many more reasons that I will be sharing with you, and guide you on how to improve your WordPress website loading speed as follows
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

  1. Web Hosting
  2. Theme
  3. Use a content delivery network(CDN)
  4. Optimize images and videos
  5. Turn off pingbacks and trackback
  6. Use Cloudflare
  7. Stop using unnecessary plugins
  8. Minify javascript

[/et_pb_text][et_pb_image src=”https://blog.gotmenow.com/wp-content/uploads/2021/09/getty_528498348_339309.jpg” alt=”website loading speed” title_text=”website loading speed” _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_image][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

1. Web Hosting Plan

 

Choosing the right web hosting plan is very important. Many people choose the cheapest hosting plan at the beginning. That’s ok as long as your website is a small size and doesn’t have much competition with other sites. But, I recommend you upgrade the hosting plan as your business size increases, and blogging performance starts going up and sees more competitors around.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]Generally, hosting companies provide three different hosting plans as follows.

  1. Shared hosting: In shared hosting, your site shares certain sources like RAM, dis space, and CPU with other sites on the same server, that’s why it’s cheaper but slower at the same time.

[/et_pb_text][et_pb_button button_url=”https://www.gotmenow.com/contact.html” url_new_window=”on” button_text=”Connect With US” button_alignment=”center” _builder_version=”4.9.10″ _module_preset=”default” custom_button=”on” button_text_size=”16px” button_text_color=”#0C71C3″ button_bg_color=”#FFFFFF” button_border_width=”6px” button_border_color=”#0C71C3″ button_border_radius=”32px” background_layout=”dark”][/et_pb_button][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]It’s like you are staying in an apartment with bunches of some other people, where you have a shared kitchen and bathroom. that will be a pain as you have to compromise all the time.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

  1.  VPS hosting: In case of VPS hosting plans, your site shares servers with other sites, but still your site gets a dedicated portion of its own server’s resource.
  2. Dedicated hosting: If your site is for business purposes, then a dedicated hosting plan is your right option, though it costs higher than other plans. It has its server, and lots more space, which makes the site more smooth and performance will be way better compared to other plans.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How to Serve Scaled Images and Improve Website Speed & Performance in WordPress with GTMetrix

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

2. Theme 

 

Does the theme effect the loading speed of the WordPress website? Yes, it is. If the theme is built with poor coding language then it will affect loading the website.

But don’t worry, you have the option of all these most used and the best themes which you can use for your site. These are Divi, OceanWP, Ultra, Astra, and Studio press.

Every website you create has a different application and purpose. For example, the website for e-commerce and the website for blogging is different. Therefore, you have to choose the theme according to your application of the website.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

3. Use Content Delivery Network(CDN)

 

The content delivery network is all about delivering your website data to the users by storing a copy of your website data to the closest server center from the users, and this allows the users to get quick access to your content on the internet.

If your website is for business, I recommended you use CDN, which makes a huge difference in website loading. Every single person that visits your sites prefers a smooth and faster loading site.

Every millisecond matters, when it comes to conversion. “A 100 millisecond slower page loading speed can result in a 7% drop in sales”  which means every millisecond matters to your business conversion.
[/et_pb_text][et_pb_image src=”https://blog.gotmenow.com/wp-content/uploads/2021/09/download-4.jpeg” alt=”website loading speed” title_text=”website loading speed” _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_image][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

4. Optimize Images And Videos

 

Videos and images are very important as a content creator. When it comes to creating beautiful and informative content, the videos and pictures are equally important, but this might lead to slowing down your website due to increasing your site size.

The best thing is there are so many free tools that can help you to optimize your photos and videos. Such as JPEG Optimizer,compressor.io are free image optimizers. Handbrake is a video compressor tool that is also free.

There are many more tools that can help to compress your photos and videos. So make sure, you use those tools to optimize your images and videos before uploading on your site.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

5. Turn Off Pingbacks And Trackbacks

Pingback and trackback are the methods of alerting if someone gives a link to your blog post. By default, pingback is turn-on on WordPress which gives alert even when you create an internal link between your posts.

The difference between pingback and the trackback is that the pingback is automatic, and the trackback is something that you have to create.

Turning off pingback and trackback will not effect creating backlinks. The reason why we have to turn off this alert is that by default, it’s automatic, which may lead to creating a lot of spams. And turning off will give less work to your website.

 

 

How To Improve WordPress Website Speed

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

6. Use Cloudflare

 Cloudflare is one of the most popular plugins that help in enhancing both website speed and security. Cloudflare acts as a CDN, which makes your website loading faster. According to Cloudflare, on average, a website using Cloudflare loads twice as fast.

It has a different plan according to the needs of your website, but you can also go with a free plan.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

7. Stop Using An Unnecessary Plugin

Especially when we use WordPress for website building, there are lots of plugins to install that create better features on the website. but some plugins are not necessary.

Heavy and unclean coding plugins on WordPress will reduce the loading speed of your site. Some plugins are already installed when you install WordPress, which is not necessary. They may help you for creating certain features but it leads to an increase in your site size that impacts on loading your site.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How can we improve website page speed?

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

8. Minify Javascript Code

Minification of javascript code makes files compact, which leads to reducing the overall size of the website.

It’s also called minimization, which removes the unnecessary characters from the javascript source code without alternating any of its functionality.

To minify the javascript code, there are some useful plugins of the WordPress that can help to minify your site’s javascript such as the Autoptimize plugin. Before I used this plugin, my website speed was around 6.5s, but as you can see below result is tested after using Autoptimize plugin.

[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_post_slider posts_number=”5″ include_categories=”2″ bg_overlay_color=”#0C71C3″ _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_post_slider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_social_media_follow _builder_version=”4.9.10″ _module_preset=”default” text_orientation=”center”][et_pb_social_media_follow_network social_network=”facebook” url=”https://www.facebook.com/Gotmenownrp” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#3b5998″ follow_button=”off” url_new_window=”on”]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”twitter” url=”https://twitter.com/Gotmenow3″ _builder_version=”4.9.10″ _module_preset=”default” background_color=”#00aced” follow_button=”off” url_new_window=”on”]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”linkedin” url=”https://www.linkedin.com/in/gotmenow-soft-solutions/” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#007bb6″ follow_button=”off” url_new_window=”on”]linkedin[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”instagram” url=”https://www.instagram.com/gotmenow_soft_solutions/” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#ea2c59″ follow_button=”off” url_new_window=”on”]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]

How To Improve WordPress Website Speed

[et_pb_section fb_built=”1″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

WordPress is used by 41.4% of the top 10 million websites as of May 2021, WordPress is one of the most popular content management system solutions in use. WordPress has also been used for other application domains, such as pervasive display systems (PDS).

Think that speeding up your website isn’t important? Think again. A one-second delay in page load time yields:

  • 11% fewer page views
  • 16% decrease in customer satisfaction
  • 7% loss in conversions*

A few extra seconds could have a massive impact on your ability to engage visitors and make sales. This means that having a fast site is essential — not just for ranking well with Google, but for keeping your bottom-line profits high. The old adage of ‘time is money’ has never been more relevant where your website is concerned. Fast website speed is one of the most vital aspects to keep viewers engaged and interactive.

Slow loading websites are more likely to be dropped by viewers and thereby lose conversions and revenue. By accelerating your WordPress website speed, your Search Engine Optimisation (SEO) will improve as well as your site will be less vulnerable to security threats. Taking your WordPress website speed to the next level and optimising the performance is highly recommended and here we look at various ways to achieve this.

[/et_pb_text][et_pb_button button_text=”Connect Us ” _builder_version=”4.9.10″ _module_preset=”default” button_url=”https://www.gotmenow.com/contact.html” url_new_window=”on” button_alignment=”center” custom_button=”on” button_text_color=”#0C71C3″ button_border_width=”2px” button_border_radius=”18px” hover_enabled=”0″ sticky_enabled=”0″][/et_pb_button][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

1. Load Time

A good load time is generally under 2 seconds. This is what you should aim for but shaving off any load time is great. Running a speed test on your site with a tool like PageSpeed Insights or GT Metrix will help to determine how fast the site loads and will give you some indications as to why your site is running slowly and how the speed can be improved.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

2. Content Delivery Network

CDN, content delivery network or content distribution network, is a network of servers around the world working together to save ‘static’ files from your website on the servers. Therefore, when your site is accessed from anywhere in the world, it will speed up the loading time of your web pages by reducing the physical distance between the server and the viewer.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How can we improve website page speed?

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

3. Web Hosting

Your web hosting server can directly affect your site speed. Managed WordPress hosting is what you should be using even if it is more expensive than normal shared hosting. The difference in speed and performance of your site will be substantial. Reliable hosting will pay for itself in the form of more sales coming through your site. One of the top WordPress hosts is WP Engine and another very popular host is SiteGround. The longest standing host is Bluehost and is officially recommended for use by WordPress.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

4. Caching Plugin

When a page downloads, the host server grabs all the information and presents it to the viewer. If caching is in place, the same information of a page will be used for subsequent viewers and will download faster than without a caching plugin. Caching plugins are normally available from the web host or use a free tool such as WP Super Cache. Viewers will notice the difference to the speed of your site once it becomes more dynamic.

[/et_pb_text][et_pb_image src=”https://blog.gotmenow.com/wp-content/uploads/2021/09/wordpress-03.jpg” alt=”wordpress-03″ title_text=”wordpress-03″ _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_image][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

5. Image Compression

Images are normally of high quality and therefore large in format.  By compressing your images, it can make a huge difference to the load time of a page on your site. By using an image compression plugin like ShortPixel you will be able to compress images by 20 – 50% without impacting the quality of the image. It’s important not to sacrifice quality for load time.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

6. Lazy Loading

Lazy loading is the ability to only download images or videos that will be visible on the users screen, all other photos or videos get replaced with a placeholder image. As the user scrolls, your website will load the images or videos relative to the viewing area. A good plugin to use is Lazy Load by WP Rocket. This plugin is useful if your site is heavily loaded with images and videos which will normally slow the site down.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

 7. More Isn’t Always Better

Plugins are common components of each website. Unfortunately, the more plugins are installed, the more resources are needed to run the website. As a result, the website works slower and also security issues can appear. As time passes, the number of plugins grows, while some of them may not be used anymore. We recommend checking out all the plugins you have installed and deleting unnecessary ones. Not only does the website speed depend on the number of installed plugins but also on their quality. Try to avoid plugins that load a lot of scripts and styles or generate a lot of database queries. The best solution is to keep only the necessary ones and ensure that they are kept up to date.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”] [/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

8. Uploading Of Videos

The direct uploading of videos or audio to your WordPress site is not recommended, as it will take up way too much bandwidth and your site could even be shut down! Rather copy and paste the video’s URL to your post and WordPress will embed it automatically. Hosting services like YouTube and SoundCloud where your videos or audios sit can cope with the bandwidth, just copy and paste the URL and the rest will be handled efficiently for you.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How to Serve Scaled Images and Improve Website Speed & Performance in WordPress with GTMetrix

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

9. Reduce Redirects

Website redirects create additional HTTP requests which negatively impact performance. We advise to keep them to a minimum or eliminate them entirely. First, you should identify all redirects on you page by running a site scan. You can use Screaming Frog to quickly identify redirects. Then you must check if they serve a necessary purpose and leave only the critical ones.

[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_post_slider posts_number=”5″ include_categories=”2″ bg_overlay_color=”#0C71C3″ _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_post_slider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_social_media_follow _builder_version=”4.9.10″ _module_preset=”default” text_orientation=”center”][et_pb_social_media_follow_network social_network=”facebook” url=”https://www.facebook.com/Gotmenownrp” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#3b5998″ follow_button=”off” url_new_window=”on”]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”twitter” url=”https://twitter.com/Gotmenow3″ _builder_version=”4.9.10″ _module_preset=”default” background_color=”#00aced” follow_button=”off” url_new_window=”on”]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”linkedin” url=”https://www.linkedin.com/in/gotmenow-soft-solutions/” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#007bb6″ follow_button=”off” url_new_window=”on”]linkedin[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”instagram” url=”https://www.instagram.com/gotmenow_soft_solutions/” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#ea2c59″ follow_button=”off” url_new_window=”on”]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]

How can we improve website page speed?

[et_pb_section fb_built=”1″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_text _builder_version=”4.9.10″ _module_preset=”default” custom_margin=”|-11px||||”]

Loading page speed of a website plays a significant role in the success of any digital product. Having a website that loads fast can enhance the experience of your customers & keep them engaging. When it comes to loading speed there are a lot of factors that affect it.

And in order to provide your customers with optimal website speed you have to fix all these factors.

  • Minimize HTTP requests
  • Minify & combine files
  • Asynchronous loading for CSS & javascript
  • Defer javascript loading
  • Reduce server response time
  • Choose right hosting
  • Reduce image size
  • Compression Audit
  • Enable browser caching

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How can I speed up my page load speed?

1. Reduce Image Size

Often times, images on site pages are large files when they don’t need to be. Many online services offer image compression without losing quality.

2. Reduce the number of plugins

Deactivate and delete any plugins you’re using that you don’t need. As mentioned earlier, each plugin makes it own server requests and contains its own coding.

Disable the plugins one at a time and continually test your site speed to see if one plugin is specifically slowing the site down.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

8 Tips to Speed Up Website Loading Time to Improve User Experience

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

After knowing how to improve page speed, you should keep an eye on “What is page speed?”

Page speed:

Page speed defines the total loading time of a particular web page. This can be important for ranking purposes if your web page has a shorter load time than other website pages then search engines should be given higher priority.

How to improve page speed:

Here we discuss some tips that can help you improve your page speed. If you want to speed up website optimization, then keep an eye on these tips

1. Proper Image Size: Make sure your page images are not larger than the version the user uses. The image size, which is declared by the lighthouse, is 100 KB. Place images under this category to improve page speed.

2. Remove unused CSS: All unnecessary CSS needs to be removed from the source code but first, make sure that the functionality of the source code has not changed. This can improve the size of the network payload when you shrink the CSS.

3. Avoid Multiple Redirection: According to the Lighthouse Report, redirection is the biggest reason for slowing down your page speed. Whenever the browser requests a resource that has been redirected, the server takes an HTTP response to retrieve the resource that takes time in this process.

How to Improve Website Loading Speed

4. Use Content Distributed Network: Content Distributed Network known as Content Delivery Network which is used to distribute the load time of content. It helps to provide users with fast and reliable access to your website.

5. Javascript Minimize: Many people forget to collapse JavaScript, then you should remove unwanted JavaScript from your page which is one of the main reasons to slow down the page load speed.

6. Intelligently designed website: This is one of the important tips by which you can solve half of the problem. Choosing the right font and visual elements helps to give you a better user experience as well as helps it load efficiently. Want help designing a website? Click here

7. Enable Browser Cache: Browser cache is required to download all page elements that need to be downloaded. Once downloaded and stored in the cache it does not need to be downloaded the next time.

8. Use of lazy load images: Lazy load images are one of the best techniques that improve page speed. Lazy load images get loaded with the user’s scroll. Lazy images are not required to be displayed on the first fold of the screen.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How to Improve the Speed of Your Website?

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Server and Web Hosting should be second priority first you must make a optimized website

Below are some points to consider while developing application to boost user experience and performance of your application.

  1. Minimizing HTTP Requests.
  2. Adding Expires or Cache control header resulting in loading most of the contents in browser from cache rather than reloading.
  3. Using Gzip/deflate compression for static and dynamic contents
  4. Avoiding inline CSS. so as to load initial page faster
  5. Using CSS on the top of the page
  6. Avoiding inline java script code.
  7. Putting java scripts at the bottom of the pages.
  8. Compressing JavaScript and CSS files.
  9. Building reusable components viz. CSS, java scripts, routines, etc. to maximize the reusability and minimize the code size.
  10. Cache the static contents viz. images, java scripts, CSS, etc. or deploy them on separate server(cookie less) for better performance (It reduces the waiting period of user and can start his/her work while static content gets loaded)
  11. Images are taking at least 80% of the total page load time. We optimize image size and using lazy loading concepts (on demand loading) for images so that will not block required content. We are reducing number of DOM elements in pages.
  12. Using minimum DOM elements in web pages.
  13. Avoiding unnecessary server responses viz. “404 Page not found”.
  14. URLs are meaningful & user friendly
  15. Explanatory HTML page titles
  16. Clear, descriptive Major headings
  17. Using tags like Emphasis (bold, etc.) carefully
  18. Avoiding @Import tag for CSS anywhere in website.
  19. Following W3C standards for HTML and CSS.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How to Serve Scaled Images and Improve Website Speed & Performance in WordPress with GTMetrix

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Use a CDN

A CDN (Content Network Delivery) provides faster experience for your website’s content to people based on their geographic location.

Here’s how it works.

As you can see above, a CDN provides faster experience to the people who are browsing your site from their closest proximities.

You can either use hosting services like WPX hosting which by default provides a global CDN or use a free CDN like Cloudflare to improve your website overall loading times across the globe.

Use a better hosting service

Whether you know it or not, your web hosting plays a crucial role as it highly impacts your site loading times. That’s why you need to prefer managed hosting services like WP Engine, Kinsta, WPX hosting etc.

Most people go for shared hosting plans and that’s why majority of the sites load really slow as those servers are shared with a ton of people whereas managed servers or dedicated servers host less sites which help you with faster loading times.

Enable page caching

Page caching is the temporary storage of web documents such as images and your web browser stores copies of web pages you’ve visited recently to reduce its bandwidth usage to provide faster speeds to the users.

By enabling caching, you can have faster page loading times. You can install caching plugins like WP Rocket, W3 total cache etc to easily boost your page performance and minifying all the cache files on your site.

[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_post_slider posts_number=”5″ include_categories=”2″ bg_overlay_color=”#0C71C3″ _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_post_slider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_social_media_follow _builder_version=”4.9.10″ _module_preset=”default” text_orientation=”center”][et_pb_social_media_follow_network social_network=”facebook” url=”https://www.facebook.com/Gotmenownrp” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#3b5998″ follow_button=”off” url_new_window=”on”]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”twitter” url=”https://twitter.com/Gotmenow3″ _builder_version=”4.9.10″ _module_preset=”default” background_color=”#00aced” follow_button=”off” url_new_window=”on”]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”linkedin” url=”https://www.linkedin.com/in/gotmenow-soft-solutions/” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#007bb6″ follow_button=”off” url_new_window=”on”]linkedin[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”instagram” url=”https://www.instagram.com/gotmenow_soft_solutions/” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#ea2c59″ follow_button=”off” url_new_window=”on”]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]

How to Serve Scaled Images and Improve Website Speed & Performance in WordPress with GTMetrix

[et_pb_section fb_built=”1″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

If you want to increase your website speed and performance then this article will help you to make it fix by using GTMetrix. What is GTMetrix?  GTmetrix is a free tool that analyzes your website loading time and page speed by using Google Page speed score and YSlow score.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]


GTMetrix Analyze Website Speed

Here we will fix the serve scaled images error in GTmetrix.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Serve Scaled Images Error Fix

With to help of WordPress free plugin we will reduce the page load time also reduce your page size. So, Lets get in to it.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

8 Tips to Speed Up Website Loading Time to Improve User Experience

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Steps Involve:

  • Open your WordPress dashboard. (http://yourdomainname.com/wp-admin)
  • Hover over Plugin and click on Add New.
  • Under the Keyword section type ShortPixel Adaptive Images.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How to Improve Your Website SpeedShortPixel Adaptive Images Free Plugin (WordPress)

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How to Improve the Speed of Your Website?

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

  • Once installed click on ‘Activate‘.
  • Now you have to go to ‘Settings‘. When you hover on settings then you will see ‘ShortPixel Al‘ in the list, click on it.
  • Now two tabs will appear on the screen ‘General‘ and ‘Advanced‘. You don’t need to change anything in the rest tabs.
  • Go to the ‘General’ Setting tab and make sure that all the setup is configured properly like the compression level should be ‘Lossless’ and WebP support ‘Checked’ and Fade-in effect ‘Checked’. Then click on Save Changes.
  • Go to the ‘Advanced’ tab. ‘API URL’ will be remain the same as configured automatically. Replace method ‘SRC’ & ‘Excluded URLs‘ should be the same as per default settings.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]Shortpixel Al Advance Settings
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How to Improve Your Website Speed

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

  • Now click on ‘Save Changes’ don’t do anything else. The API URL of the ShortPixel Al will take your images data and optimize your website images automatically.
  • Go to GTMetrix again type your domain URL and execute the test of page speed. This time you will observe that your Serve Scale Images error fixed and it reduce the time of page load and performance at the same time.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]                                   GTMetix Serve Scaled Images Score Optimization
[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_post_slider posts_number=”5″ include_categories=”2″ bg_overlay_color=”#0C71C3″ _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_post_slider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_social_media_follow _builder_version=”4.9.10″ _module_preset=”default” text_orientation=”center”][et_pb_social_media_follow_network social_network=”facebook” url=”https://www.facebook.com/Gotmenownrp” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#3b5998″ follow_button=”off” url_new_window=”on”]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”twitter” url=”https://twitter.com/Gotmenow3″ _builder_version=”4.9.10″ _module_preset=”default” background_color=”#00aced” follow_button=”off” url_new_window=”on”]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”linkedin” url=”https://www.linkedin.com/in/gotmenow-soft-solutions/” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#007bb6″ follow_button=”off” url_new_window=”on”]linkedin[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”instagram” url=”https://www.instagram.com/gotmenow_soft_solutions/” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#ea2c59″ follow_button=”off” url_new_window=”on”]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]

How to Improve the Speed of Your Website?

[et_pb_section fb_built=”1″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]The biggest factor contributing to the success of any business’ website is user experience (UX). A crucial element of UX is a fast-responding website. So how to improve your website?

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]Research indicates that 47% of web users expect a web page to load in under two seconds. Moreover, 40% of web users leave a website if it takes longer than three seconds to load. And even a second delay in web page response times can cause a 7% drop in conversions.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]Page load speed directly affects customer engagement, conversion rates, SEO, and brand promotion. Choosing the right web hosting provider and service plan will optimize website performance.

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How to Improve Your Website Speed

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Your Website May Slow Response Speeds

 

Uncompressed web page files such as Cascading Style Sheets (CSS) and Javascript (JS) files can slow page load times. Large, unoptimized image files also impede web page load speeds.

Many eCommerce websites use third party scripts for cookies, advertising, analytics, social networking, and apps. Delays in load times occur when a browser detects a third-party script, loading data from multiple databases sourced from hidden party servers. Thus, it’s best to keep third-party services to a minimum.

Another means to improve a website’s load times is to enable browser caching. This will improve response times for returning visitors.
[/et_pb_text][et_pb_image src=”https://blog.gotmenow.com/wp-content/uploads/2021/09/website-performance-measurement.jpg” alt=”improve your website speed” title_text=”improve your website speed” align=”center” _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_image][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Does The Hosting Provider Offer A Contact Delivery Network (CDN)?

 

To optimize load speeds to users worldwide, ensure the web hosting provider offers contact delivery networks (CDNs). Without the benefit of a CDN, a website’s content is sourced from just one server serving global visitors from all continents. 

For example, if a visitor from New Zealand accesses content hosted on an origin server in Europe, inevitably, response times will lag. A worldwide CDN has points-of-presence (POPs) spread around the globe, routing website requests to the nearest CDN POP. Reducing the physical distance between a responding server and a requesting location greatly decreases load and response times.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]A CDN is vital to optimizing worldwide UX. Researchers have found that, on average, a CDN slashes website lag (latency) by 83% compared to websites without a CDN.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Web Hosting Plans Matter

 

The type of web hosting plan a business uses will impact user response times and UX. A shared hosting plan, while the least expensive option, is also the least robust in terms of performance, security, and flexibility.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]A shared hosting server accommodates multiple websites, all of which share the server’s resources such as available bandwidth, CPU, RAM, and memory. If a website suffers from slow web page loads and response times, the first step is to upgrade to a more powerful hosting solution.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]Dedicated server hosting will greatly improve website performance. However, this option comes at a relatively high cost. A more economical choice is a virtual private server (VPS) solution, which delivers most of the advantages of a dedicated server.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

8 Tips to Speed Up Website Loading Time to Improve User Experience

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Optimizing Servers For Speed

 

When considering web host providers, part of one’s due diligence is to evaluate the storage devices they use. Find out if their servers deploy solid-state drives (SSDs). Faster and more reliable than legacy hard disk drives (HDDs), SSDs achieve greater speed through more efficient data throughput and much faster seek times. Moreover, SSDs are an eco-friendly choice as they use less energy than HDDs.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]What web server software does the hosting provider use? While Apache HTTP is widely used across multiple computing platforms, some hosting providers now rely on faster technologies such LiteSpeed Web Server (LSWS) or Nginx.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]Another important consideration is the web host’s relational database management system (RDMS). The most popular DB engine is Oracle’s MySQL but the MariaDB RDMS-a variant of MySQL-delivers faster performance.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Improve Website Speed using WebP image format from Google

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Testing Websites For Speed

 

Free online tools are available to test a website’s speed. Use Google’s PageSpeed Insights or the Pingdom Web Site Speed Test to determine any possible chokepoints. These tests grade websites and note what elements can be improved.

[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_post_slider posts_number=”5″ include_categories=”2″ bg_overlay_color=”#0C71C3″ _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_post_slider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_social_media_follow _builder_version=”4.9.10″ _module_preset=”default” text_orientation=”center”][et_pb_social_media_follow_network social_network=”facebook” url=”https://www.facebook.com/Gotmenownrp” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#3b5998″ follow_button=”off” url_new_window=”on”]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”twitter” url=”https://twitter.com/Gotmenow3″ _builder_version=”4.9.10″ _module_preset=”default” background_color=”#00aced” follow_button=”off” url_new_window=”on”]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”linkedin” url=”https://www.linkedin.com/in/gotmenow-soft-solutions/” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#007bb6″ follow_button=”off” url_new_window=”on”]linkedin[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”instagram” url=”https://www.instagram.com/gotmenow_soft_solutions/” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#ea2c59″ follow_button=”off” url_new_window=”on”]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]

8 Tips to Speed Up Website Loading Time to Improve User Experience

[et_pb_section fb_built=”1″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]A fast website is crucial in maintaining a positive user experience. Evidence suggests that users become distracted if there is even a one-second delay. Every second after that increases the likelihood the end-user will leave. This is why it’s imperative your website loads quickly. This article will briefly address a number of methods that you can use to speed up your website loading time.
[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default” custom_margin=”5px|auto||auto||”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

1. Reduce File Sizes

The amount of content that can be delivered in a discrete amount of time is limited by a finite amount of bandwidth. All things being equal, the larger the files on a site, the longer it takes for them to load. While large file sizes may not have much of an impact on users who use extremely high-speed connections (such as T1 or T3 connections), it will impact those running on slower hookups.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]The best way to reduce file sizes is to run your images through various optimization techniques. Some techniques include:

  • Compressing images via tools such as Photoshop and/or Compress PNG. There are several image compression tools out there that make it simple to make files smaller.
  • Resizing your image so it’s smaller. The smaller it is, the faster it loads.
  • Picking a file type appropriate for your image. Typically, you’ll choose between JPEG, GIF, and PNG. JPEG is great for quality in a small size, GIFs should only be used for thumbnails and as decorative images, and PNGs are excellent because their quality won’t degrade with re-saves.

Sometimes, you might need to consider eliminating some files. The less your website has to load, the better.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How to Improve Your Website Speed

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default” custom_padding=”||0px|||”]

2. Turn on GZIP Compressing

After reducing file sizes, compress images on the server using HTTP compression. This will reduce the amount of bandwidth required to load content, thus improving the speed of your website.

One way you can compress files is with Gzip compressing. Gzip can compress HTML, JavasScript, XML, CSS, fonts, and just about anything you render on your site. Gzipping can be enabled on an Apache server using the mod_deflate module in your root .htaccess file and adding a filter for each file type that your site delivers.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

3. Caching For Improving Website Loading Time 

If a website requires a webpage load every time there is a unique visit, then every file that you have on the page needs to be downloaded individually.  This includes everything from the HTML, CSS, JavaScript, and any other assets your site provides. This can lead to slow load times for a particular webpage.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]The best way to prevent this is to use the caching function most browsers have built-in. Doing so will speed up the response time of a page on subsequent visits.

In addition to this, you can let browsers know to serve a cached version of a webpage by adding Expires Headers. These headers tell the browser which content is static and which content is dynamic. This is a great option to cut some of the load time for repeat visitors.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Improve Website Speed using WebP image format from Google

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

4. Reduce Server Calls

Too many calls to the server can lead to significant slowdowns of your website. Sending any request to a server requires full communication, including a request and response, before the page can be rendered. To increase website loading speed.

Here are a number of ways you can reduce HTTP calls.
[/et_pb_text][et_pb_image src=”https://blog.gotmenow.com/wp-content/uploads/2021/09/guest-blogging-websites.jpeg” alt=”website loading time” title_text=”website loading time” _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_image][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Use CSS Image Sprites

Creating CSS image sprites is one easy way to reduce the number of server calls your website receives. Instead of loading 20 individual images to a site, sprites load one large image containing all the necessary elements in it so it can be zeroed in using CSS.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Reduce Your HTTP Redirects

If several 3xx response codes appear on your website, you are likely sending users to get information from too many locations. Avoid doing this, even if it is for SEO purposes.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Anytime your site sends instructions to a server to look for a file that doesn’t exist, a 404 error will appear. Too many 404s can increase your page load time.

Take the time to fix any 404s you come across. Doing so will significantly improve your website and website loading  speed.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

5. Optimize Your Dynamic Content to Improve Website Loading Time

 

Minify

While a blank space within CSS and JavaScript files may appear to be empty to the human eye, each blank character must be read and processed by the browser engine. In cases such as these, make sure to minify by reducing the number of blank characters in files. Doing so will decrease the amount of time it takes a web browser to render content.

There are several free tools you can use to minify your files:

  • HTML Minifier
  • CSS Minifier
  • JavaScript Minifier

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Use HTML

Some sites automatically convert HTML into an in-site scripting language. As you can imagine, the time it takes to convert HTML can slow down your website. It’s better for your website if your content is delivered as raw HTML.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

CSS at the Top/JavaScript at the Bottom

CSS should be placed near the top of your page. This ensures the page loads right away and is rendered properly.

JavaScript can take a while to load, so you want it near the bottom of the page. This way it runs after the rest of the page loads. With CSS near the top, this will make sure users at least have content while the rest of the webpage loads.

If you are using a small amount of JavaScript, avoid calling it in a separate file. Instead, to reduce HTTP requests, include JavaScript code directly on the page.

Note: if you intend to use any popular JavaScript libraries, use a CDN to deliver your content to take advantage of the fact that many people will already have these downloaded in their browser caches. This will significantly reduce page load time.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

How to Improve Website Loading Speed

[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

6. Optimize Your Database

Writing well-designed query database calls can have a significant impact on the time it takes for content to be delivered to your site. Poorly written queries can have a pronounced negative effect on page load time.  This is particularly true for sites that have quite a bit of traffic and/or deliver a large number of products.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]While database optimization is a large topic, here are a few quick tips.

One of the most common mistakes made by developers is to use a wildcard query to retrieve results. Take, for instance:

“select * from table_name”

A large table can slow you down quite a bit. If you don’t need every field, request individual keys from the table, like so:

“select field1, field2 from table_name”

Other ways you can improve performance include making sure that the database is properly indexed, reducing correlated subqueries, and avoiding temporary tables.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

7. Hosting Provider

A website is only as fast as its weakest link, so choosing a good web provider and plan may prove to be a crucial factor in delivering your site at optimum speeds. If you’re using large central providers such as AWS, you may wish to use Content Delivery Networks (CDNs).
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

8. Use a CDN to Reduce Latency

Physical distance from the server can increase the time it takes for a server to respond to an HTTP request. By using CDNs, you can place servers in different locations around the globe, which will reduce load times for people in different regions.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.
[/et_pb_text][et_pb_text _builder_version=”4.9.10″ _module_preset=”default”]

Final Notes

This is only a small sampling of different techniques one can use to speed up a website. Each one could easily be covered in more detail. However, you may wish to use this piece as a checklist of techniques you can try if your site has slow response times.

Not sure if your website is running slow? That’s where Airbrake’s Performance Monitoring comes in. Our developer-centric Performance Monitoring software gives you the tools you need to make sure your app or website is running smoothly and quickly. With Performance Monitoring, you’ll have access to requests and response times, Apdex Score, error occurrences, and so much more. Try Airbrake Performance Monitoring today with a free 30-day trial where you’ll get unlimited performance events, error monitoring, unlimited users, and unlimited projects.
[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_post_slider posts_number=”8″ include_categories=”2″ bg_overlay_color=”#0C71C3″ _builder_version=”4.9.10″ _module_preset=”default”][/et_pb_post_slider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=”4.9.10″ _module_preset=”default”][et_pb_column type=”4_4″ _builder_version=”4.9.10″ _module_preset=”default”][et_pb_social_media_follow _builder_version=”4.9.10″ _module_preset=”default” text_orientation=”center”][et_pb_social_media_follow_network social_network=”facebook” url=”https://www.facebook.com/Gotmenownrp” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#3b5998″ follow_button=”off” url_new_window=”on”]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”twitter” url=”https://twitter.com/Gotmenow3″ _builder_version=”4.9.10″ _module_preset=”default” background_color=”#00aced” follow_button=”off” url_new_window=”on”]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”linkedin” url=”https://www.linkedin.com/in/gotmenow-soft-solutions/” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#007bb6″ follow_button=”off” url_new_window=”on”]linkedin[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=”instagram” url=”https://www.instagram.com/gotmenow_soft_solutions/” _builder_version=”4.9.10″ _module_preset=”default” background_color=”#ea2c59″ follow_button=”off” url_new_window=”on”]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]