fbpx

Contact Info

Mbodla, private Bag X 2221, Ingwavuma,3968

(+27) 31 880 3077

info@primetechnologies.co.za

Client Area
Recommended Services
Supported Scripts
WordPress
Hubspot
Joomla
Drupal
Wix
Shopify
Magento
Typeo3

an important aspect of our digital world – the significance of the right web hosting control panel.

The control panel is the heart of any website. It is the central hub where you manage all the aspects of your website, from security to email settings. Choosing the right one matters because it directly affects the efficiency, security, and user-friendliness of your website management.

A good control panel provides an intuitive interface, making it easier for you to manage your website even if you are not technically inclined. It ensures that you have the necessary tools at your fingertips, saving you time and effort.

Moreover, the right control panel also plays a crucial role in the security of your website. It provides robust security features to protect your website from threats and attacks, ensuring the safety of your data and your users’ information.

Your feedback is invaluable to us. If you have any thoughts, or questions, or need further clarification on this topic, please feel free to share. We are here to assist you.

bottlenecks on any WordPress site.

“Our guide will help you understand the underlying principles of WordPress optimization”

Khuleh Tembe

This guide is designed to give you a clear understanding of how to optimize your WordPress site for better performance and user experience. It covers various aspects such as theme and plugin selection, image optimization, caching, and more.

We believe that with this guide, you will be able to make informed decisions and implement effective strategies for your WordPress site. Your feedback is incredibly valuable to us, and we would appreciate if you could share your thoughts after reviewing the guide.

It should always be one of your main priorities to optimize WordPress for speed when developing a website. First of all because of the user experience: the slower a website loads, the more likely it is the visitor will opt out before the entire page is loaded. SEO is also an important element. Google considers page speed to be a ranking factor, so it is in your interest to pay attention to this subject.

Fortunately, WordPress makes life pretty easy to do some quick optimization that can make a huge difference. In this tutorial, we will walk through some basic principles and best practices that you can do without any coding. In future tutorials, more advanced techniques will be discussed as well.

How can I tell if my WordPress website loads fast or not?

There are some widespread online tools where you can conduct tests and get feedback on where to improve:

  • Google PageSpeed Tool: one of the most famous and popular online tools. You can fill in any URL to check and you will see what the score is, both on desktop and mobile devices. You should aim for a score of at least 85/100.
  • GTmetrix. This tool gives more detailed results than Google PageSpeed. You can drill down every remark even further. Recently, they switched from Onload time to Fully loaded time too, to display more consistent results.
  • Pingdom Website Speed Test: Also a commonly used tool among web developers and is worth bookmarking.

If you run a test on any of these tools, you will encounter more or less the same bottlenecks every time:

  • Optimize images
  • Leverage browser caching
  • Minify HTML, CSS, and JavaScript
  • Use a Content Delivery Network (CDN)
  • Reduce server response time
  • Reduce the number of server requests
  • JavaScript and CSS files above the fold blocking content

Once again: this is a tutorial about basic principles, so we will limit ourselves to the first five topics. There you can address straight away without diving into any code.

1. Optimizing images

What’s a website without any images? If you run a blog that displays a certain number of posts on the homepage, even thumbnail images, this can have a dramatic effect on page speed. Images are often uploaded rapidly through the back-end, without checking file size. I recently stumbled upon a website where they had uploaded a 2MB .jpg-file, just for the company logo in the header.

Optimizing images will make a huge difference! Here are some quick tools to accomplish this:

  • Adobe Photoshop: if you have Adobe’s software at your disposal, this is a good point to start. You can save any given image in a lightweight format, specifically for the web. Simply choose File > Save for web & devices. You can choose different levels of quality there.
  • Compressor.io. A free online tool. You can simply drag and drop .jpg, .png, .gif and .svg-files. The tool will maintain the high quality of your images. You can also choose between lossy and lossless compression.
  • Tinypng.com: This tool offers more features since it also offers a plugin for Photoshop and a tool where you can run a check of your website to see how much you can save by optimizing your images
  • EWWW Image Optimizer WordPress plugin: One of the most popular WordPress plugins for image optimization out there. It offers perfect compatibility with image galleries such as NextGEN and FooGallery. It is updated regularly and currently holds a score of 4.4 out of 5 stars. A no-brainer.

2. Leverage browser caching

For those who are not very technical, let us explain the concept of browser caching. When you visit a website for the first time, it loads from top to bottom, all sorts of scripts are executed, server requests are made to fetch images, etc… As soon as this is done, the rendered HTML output will be stored in your browser’s cache memory. If you visit the page again after a while, your browser will show you the page with the rendered HTML code from its cache memory, thus improving speed.

Now, if you have external sources installed on your website, such as Google Analytics, Hotjar, Crazy Egg, or social media, these will be out of your reach. After all: these sources are loaded from external servers, so you can’t control them. If these remarks pop up while conducting a speed test, you will have to settle for it.

However: caching can also be implemented on your website itself. WordPress plugins come to the rescue once again:

  • W3 Total Cache. Without a shadow of a doubt, the most used caching plugin out there. It features enhanced possibilities that can be overwhelming when you go through them. In most cases, the default settings will do the job already. There is a small catch: do not forget to clear all your cache when you have made changes to the content of your site. You can do this easily through the quick menu in the toolbar in the backend. This is a great plugin because it also offers vast possibilities for HTML, CSS, and JavaScript minification. So you don’t have to install separate plugins for these. It also offers a premium (paid) version if you decide to go all the way.
  • WP Super Cache. Another popular caching plugin that has been around for some while. It doesn’t offer as many options as W3 Total Cache, but if you want to keep things comprehensible in your admin section, this plugin will do the job just fine.

3. Minify html, css and JavaScript

Your ‘standard’ HTML, ,CSS and JavaScript are files filled with code. In this code, there are whitespaces and breaks. Minifying these files simply means stripping out all unnecessary breaks and spaces. Most of the time it is not a huge gain, but every bit helps. W3 Total Cache offers this possibility (it is possible it will even be enabled by default after installation). There are dedicated plugins to minify HTML, ,CSS and Javascript but be careful: once you install a minification plugin and tell it to minify certain files, check if your website still works properly. Minification can break certain functionalities. There are tons of minification plugins out there, way too much to list them all here. So pick one from the WordPress Plugin Directory if your caching plugin doesn’t offer the possibility to minify your files.

4. Use a Content Delivery Network (CDN)

Content Delivery Network (CDN) is a network with a bunch of servers that are geographically located closer to the user that visits your webpage. This leads to shorter connection distances and decreases latency, thus faster loading. Although this recommendation pops up in many speed test tools and although it does reduce page load, you should ask yourself if you need this.

A CDN comes alive if you have a website with heavy traffic, operating worldwide. If you have a small website for a regional business or a small blog, using this option is probably a bit of overkill. It is also very likely you have to make some adjustments to your DNS settings, so be sure you have access to these. Cloudflare is a well-known CDN, offering several formulas from free to paid enterprise solutions.

5. Reduce server response time

This is again a point you more or less don’t control. The best thing you can do here is to partner up with a decent host on the web. Cheap hosts are fun if you want to experiment a little bit but if you really want to publish content, make some considerations first. Especially when your website or blog grows over time, it is important your host can ensure a constant level of quality towards speed, security, and customer service.

Leave a Reply

Your email address will not be published. Required fields are marked *