06/15/2024
Your website is being slow, and it's not converting. Before you give up, try these.
Optimize your images
Double check that your image sizes aren't massive compared to what you relatively need them for (e.g. A 500x500 square and you're using a 2480x3680 original sized image).
WebP formatted images are the most efficient option, but have compatibility issues. I tend to stay with a good sized JPEG.
Minify and compress files
If you're not familiar with coding, this part will be confusing. Although, nowadays an AI LLM could help you within' a few prompts. There are plenty of prompt engineers on Medium right now who are doing incredible things. All you have to do is look.
Use caching
Caching is your friend. If you’ve ever gone to a website, had it load, closed it, and then re-opened it like me only to have it open instantly — that was because of the temporary data stored.
Note: Clearing your cache is not a bad idea at all every once in awhile. I do it once every few months after I've visited quite a few sites, and feel like my laptop's performance is getting bogged down.
Minimizing HTTP requests
Imagine you're ordering food at a restaurant. Instead of asking the waiter to bring you one thing at a time (like "bring me a burger", then "bring me fries", then "bring me a drink"), you can order everything at once ("I want a Royale with cheese").
This way, the waiter only needs to make one trip to your table, instead of three.
In the context of websites, this means combining files and images into fewer requests, making the website load faster and more efficiently. Contact a professional.
Use a CDN
A "Content Delivery Network" (CDN) creates a network of servers across different locations around the world (e.g., New York, Tokyo, London, etc.). When someone visits your website, their browser is directed to the nearest CDN server, which already has a copy of your website’s content ready to rock n’ roll for that user.
What this does is reduce the distance the user request has to travel, making your website load much faster.
If you're not familiar with how to set these up on your website, hire a professional.
I'd teach you, but I'd have to kill you.