Website Speed Optimisation: The Four Fixes That Actually Matter

Ezitech

Software & Development article by Ezitech: Website Speed Optimisation: The Four Fixes That Actually Matter

Almost every slow website in Pakistan is slow for the same four reasons, and almost every speed optimisation package sold locally focuses on a fifth thing that does not matter. Here is where the seconds actually go.

What to measure first

Ignore the overall score out of 100. It is a summary that hides what is wrong. Three numbers matter:

  • Largest Contentful Paint (LCP): how long until the main content appears. Target under 2.5 seconds. This is the number that correlates with people leaving.
  • Interaction to Next Paint (INP): how quickly the page responds when someone taps. Target under 200ms.
  • Cumulative Layout Shift (CLS): how much the page jumps while loading. Target under 0.1. This is what makes people tap the wrong thing.

Measure on a mid range Android phone on a mobile connection, not on your office laptop on fibre. That is what your customers actually have, and the difference is usually a factor of three.

The four fixes that produce most of the gain

1. Images

On a typical Pakistani business website, images are sixty to eighty percent of page weight, and most of that is waste. The usual situation is a 3MB photograph straight from a camera, displayed at 400 pixels wide.

What to do:

  • Resize to the largest size actually displayed. Nothing needs to be 4000 pixels wide.
  • Convert to WebP. Typically thirty percent smaller than JPEG at the same quality.
  • Add lazy loading so images below the fold do not load until needed.
  • Set explicit width and height on every image. This alone fixes most layout shift.

This one change routinely takes a page from six seconds to under three, and it is the cheapest work available.

2. Hosting

The second largest factor and the one people are most reluctant to spend on. A site on a 3,000 rupee a year shared plan sharing a server with four hundred other sites will be slow regardless of what you do to the code.

Two things matter: server response time (target under 500ms) and where the server is. A site serving Pakistani customers from a US shared host is paying a fixed latency penalty on every request.

Moving from cheap shared hosting to decent managed hosting is often the single highest return change available, and it does not require touching the site.

3. Plugin and script bloat

On WordPress this is usually the third biggest problem. Every plugin adds CSS and JavaScript to every page, whether that page uses it or not. A site with thirty plugins is loading assets for features that appear on one page.

Audit what is installed, remove what is unused, and check whether page builders are loading their entire library on pages that are mostly text.

The same applies to third party scripts: analytics, chat widgets, heat maps, five tracking pixels. Each one is a request to somebody else’s server that can be slow. Keep the ones you actually look at.

4. Fonts

Frequently overlooked and easy to fix. Loading four font families with six weights each from Google Fonts blocks text from appearing until they arrive.

Use two families at most, host them yourself, load only the weights you use, and set font display to swap so text appears immediately in a fallback.

What is sold and does almost nothing

  • Minification of CSS and JavaScript. Worth doing, saves kilobytes. It is not why your site takes six seconds, and selling it as a speed package is misleading.
  • A CDN, when all your customers are in Pakistan. A CDN reduces distance. If your server and your audience are both in Pakistan, the gain is small. It helps a lot for international audiences.
  • Aggressive caching plugins on a fundamentally bloated site. Caching hides the problem for repeat visitors and does nothing for the first time visitor who decides whether to stay.
  • Chasing a perfect score. Going from 85 to 97 usually costs more than it returns. Going from 30 to 70 changes the business.

The order to do the work

  1. Measure on a real phone, on mobile data.
  2. Fix images. Resize, convert, lazy load, set dimensions.
  3. Check server response time. If it is above 800ms, change hosting before anything else.
  4. Audit plugins and third party scripts. Remove, do not optimise.
  5. Fix fonts.
  6. Then, and only then, consider caching and minification.

Most sites are finished after step four.

Why this matters commercially

Speed affects two things: how many visitors stay, and how Google ranks you. The second is real but modest; the first is large. On mobile connections, every additional second of load time costs a measurable share of visitors before they see anything.

If the site exists to generate enquiries, the speed work usually pays for itself faster than another month of ads. For the wider picture on what moves rankings, see our guide to technical SEO fixes that actually work.

Frequently asked questions

What is a good page load time?

Largest Contentful Paint under 2.5 seconds on a mid range mobile device on a mobile connection. Test on that, not on a desktop on office wifi.

Does site speed affect Google rankings?

Yes, as one factor among many. Its larger commercial effect is on conversion rather than position: slow pages lose visitors before they read anything.

Will a caching plugin fix my slow WordPress site?

Partially, and only for repeat visitors. It does not fix oversized images, poor hosting or plugin bloat, which are usually the real causes.

How much does speed optimisation cost in Pakistan?

Typically 25,000 to 120,000 PKR for a thorough pass on a business site, depending on size and how much needs rebuilding rather than adjusting. Hosting changes are separate and often the better first spend.

Ezitech builds and maintains web platforms for clients in 42 countries, with performance treated as engineering rather than a plugin. Ask us to look at your site.

Leave a Reply