As more and more businesses are having an extensive online presence, the importance of website speed is becoming increasingly obvious.
When it comes to creating a website, there are many things to consider – the overall design, content, and Search Engine Optimization (SEO). But the most important factor is the performance of your website.
Why is website performance important?
According to the surveys done by Akamai and Gomez.com:
Also, page load time on mobiles has a surprising effect on the bounce rate and more. Think With Google conducted an experiment and published the following:
Here are some of the surprising insights they published regarding the connection between page load time and bounce rate.
Improving the speed of WordPress websites can be quite tricky because of the way 3rd party plugins operate and how scripts are enqueued.
We are going to discuss some of the best speed performance practices to optimize your website. All the steps will give you an idea of how to improve page speed without relying on plugins.
Hopefully, by following these guidelines, you’ll be able to improve your website speed.
Images often occupy a significant amount of visual space on web pages. Optimizing images will result in saving bytes and performance improvement.
Here are some tips that will help you optimize images on your website.
We download all the images and manually compressed them. Once you optimize the existing images, make it a point to optimize the new images before uploading.
The JavaScript or CSS that blocks your website from rendering on the browser is known as render-blocking Javascript and CSS files. This suggestion is displayed when HTML references block external JavaScript in the above-the-fold portion of your page.
So how do you remove render-blocking JavaScript?
Google recommends the following solutions.
<html>
<head>
</head>
<body>
<div>
Hello, world!
</div >
<script type=”text/javascript”>
/* contents of abc JavaScript file */
</script >
</body>
</html>
Minify basically means removing unnecessary characters which the code doesn’t need to execute. The process removes white space characters, new line characters, comments, and blocks delimiters.
You can do this work with the help of minifying tools. Here is a list of tools that will help you minify and combine files.
(A) Closure tools – A series of tools from Google Developers which will help to speed up JavaScript code. Some of them include
(B) CSS Minifier –Removes spacing, indentation, new lines, and comments from CSS code
(C) JavaScript Minify Tool – Another tool similar to CSS Minifier
(D) JavaScript Minifier –Minifies CSS and also has a JPEG optimizer and image resizer(E) Online JavaScript/CSS Compressor – Minifies your CSS, HTML, and JavaScript using UglifyJS 2, Clean-CSS and HTML Minifier
You can enable ‘Leverage Browser Caching’ in WordPress by,
# TN – START EXPIRES CACHING #
ExpiresActive On
ExpiresByType text/css “access 1 month”
ExpiresByType text/html “access 1 month”
ExpiresByType image/gif “access 1 year”
ExpiresByType image/png “access 1 year”
ExpiresByType image/jpg “access 1 year”
ExpiresByType image/jpeg “access 1 year”
ExpiresByType image/x-icon “access 1 year”
ExpiresByType application/pdf “access 1 month”
ExpiresByType application/javascript “access 1 month”
ExpiresByType text/x-javascript “access 1 month”
ExpiresByType application/x-shockwave-flash “access 1 month”
ExpiresDefault “access 1 month”
# TN – END EXPIRES CACHING #
# TN – BEGIN Cache-Control Headers
<ifModule mod_headers.c>
<filesMatch “\.(ico|jpe?g|png|gif|swf)$”>
Header set Cache-Control “public”
</filesMatch>
<filesMatch “\.(css)$”>
Header set Cache-Control “public”
</filesMatch>
<filesMatch “\.(js)$”>
Header set Cache-Control “private”
</filesMatch>
<filesMatch “\.(x?html?|php)$”>
Header set Cache-Control “private, must-revalidate”
</filesMatch>
</ifModule>
# TN – END Cache-Control Headers
# TN – BEGIN Turn ETags Off
FileETag None
# TN – END Turn ETags Off
Once you complete the above steps, you have enabled ‘Leverage Browser Caching’ via .htaccess.
Basically, sprites combine several images into one image so that web pages can be displayed quickly. For example, instead of downloading six images, your webpage will download only one. This is the beauty of sprites, it reduces server requests.
GZIP, the file format and software application used for file compression and decompression are probably one of the easiest optimizations you can do on WordPress. It helps reduces the size of your HTML, stylesheets, and JavaScript files.
You can enable Gzip compression by editing your .htaccess file. Most of the hosts use Apache, so you can simply add the below code to your .htaccess file at the root of your WordPress website via FTP.
<IfModule mod_deflate.c>
# Compress HTML, CSS, JavaScript, Text, XML and fonts
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
AddOutputFilterByType DEFLATE application/x-font
AddOutputFilterByType DEFLATE application/x-font-opentype
AddOutputFilterByType DEFLATE application/x-font-otf
AddOutputFilterByType DEFLATE application/x-font-truetype
AddOutputFilterByType DEFLATE application/x-font-ttf
AddOutputFilterByType DEFLATE application/x-javascript
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE font/opentype
AddOutputFilterByType DEFLATE font/otf
AddOutputFilterByType DEFLATE font/ttf
AddOutputFilterByType DEFLATE image/svg+xml
AddOutputFilterByType DEFLATE image/x-icon
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/javascript
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/xml# Remove browser bugs (only needed for really old browsers)
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
Header append Vary User-Agent
</IfModule>
The order of styles and scripts can be optimized by changing a few lines of code. ‘Head’ section is the area where the styles and scripts are called. Here is an example of optimizing the order of inline styles and scripts.
<head>
<title>title</title>
<style>
css code goes here
</style>
<script>
javascript code goes here
</script>
</head>
Broken links drain your bandwidth, make users leave your website, and hurt your SEO efforts. There are two types of broken links on your website.
(A) Internal links
Internal links are the ones you can control on your website. Whenever you update or make any changes to your website, always check if the internal links are working.
(B) External links
External links or outbound links are the links that point to another website for reference. You have to spend more time checking the external links because you will have no control over it. So, you have to check it from time to time to see if they are working.
To identify broken links, we recommend using the following free tools.
@import has a negative impact on web page performance. Directly linking to both your stylesheets and @import achieves the exact same results, but the former utilizes fewer resources than the latter. Plus some of the old versions of browsers do not support @import, so it’s best to avoid it.
Even though 301 redirects are permanent, too many redirects slow down the time it takes the browser to reach the original version of the page. No matter the reason, redirects always triggers an additional HTTP response and adds up the round-trip-time latency.
Screaming Frog is one of the best tools that help to identify 301 redirects.
HTTP Keep-Alive is the message that is sent between the client machine and web server asking for permission to download a file.
By default, HTTP connections close after each request. So if a user visits your website, their browser has to create a new connection to request the files in your web pages (e.g. images, Javascript, and CSS stylesheets). This process can lead to a higher page load time.
If you enable Keep-Alive, user machines will not repeatedly request to download multiple files. This will also help to save bandwidth.
To enable Keep-Alive, paste the below code into your .htaccess file.
<ifModule mod_headers.c>
Header set Connection keep-alive
</ifModule>
Hotlinking or bandwidth stealing is a common problem that many faces. It happens if others use images/files of your website.
To prevent others from hogging your bandwidth and slowing your website, you have to add the below line of coding into your .htaccess file.
In the above example, you have to change ‘example.com’ to your website URL.
Usually, on WordPress websites, plugins are one of the major reasons behind speed drain. If there are any plugins which you no longer use, delete them.
After manually going through the above-said points, treating them as a checklist, and implementing it on our client’s website, we experienced noticeable speed improvements.
Google PageSpeed Insights
Pingdom
Gtmetrix
The speed of your website depends on the architecture of your web pages, databases and the speed of your hosting server.
Even though you have to optimize your code and content, the loading speed of your website is highly dependent on your hosting environment.
The page load speed of your website will affect your Google rankings as it has become a part of its ranking algorithm update in 2018.
So going with the right type of hosting service can make or break your website. Quality web hosting will keep your website available around the clock, offer good security options, backup your online files and accommodate your ever growing needs. Also, check out our article on the top 5 WordPress Hosts for local businesses. Please read it before making a decision.
No matter the quality of content and products you offer, poor hosting has a high chance of costing you, customers. When it comes to WordPress, there are many hosting providers you can choose from.
A CDN is a geographically distributed group of servers that delivers static content to the end users. It improves the performance of websites by copying static content like images, on-demand video, CSS stylesheets, JavaScript and more to a network of remote servers. When a user requests the content, the data is accessed from the closest server location of the user. This results in fast-loading highly reliable websites.
By using CDN, you can reduce the processing load on your server, lower latency, manage traffic spikes, and avoid downtime.
According to the current trends, video consumption is at its peak. Users love high-resolution videos. But your website must be optimized to handle it because such type of content can cause performance problems. Here are some of the video optimization tips you can follow when adding videos to your website.
If you like to learn more about how to optimize video streaming on your website using HTML5 tags, click here.
We hope that you have found some tips that you can act upon to improve your website speed. If you’re looking to optimize the speed of your WordPress website through plugins, take a look at some of our favorite speed optimization plugins that can help you achieve speed improvements.
Plus, if you are using a page builder like Elementor, there are certain speed optimization points you need to keep in mind. Take a look at our article on Best Speed Optimization Tips for Elementor Website to learn more.
If you want our website speed optimization geeks to supercharge your website do get in touch with us.
What speed optimization hacks improved your website speed? What were the results? We would love to hear from you.
When creating and optimizing a website, one of the most important factors that some businesses…
One of the biggest challenges in creating an effective healthcare marketing strategy is recognizing that…
As more women become increasingly interested in vaginal rejuvenation, having appropriate and professional vaginal rejuvenation…
Prior to developing the EEAT (Expertise, Authoritativeness, Trustworthiness) framework, Google initially focused heavily on on-page…
Search Engine Optimization (SEO) has come a long way from keyword density and backlinks. Since…
Many healthcare marketers are struggling to find success with their content marketing efforts. In fact,…