WhatsApp offers features to enhance privacy, manage notifications, and improve communication, such as setting disappearing messages, muting group chats, and creating chat shortcuts. You can customize the app with custom chat wallpapers, bold or italicize messages, and even use a disappearing message feature for photos and videos. For convenience, you can pin important chats, reply to specific messages, and listen to voice messages before sending them. Check the most useful WhatsApp tips and tricks, such as how to screen share on WhatsApp. Listed coolest tips to help you get the most out of WhatsApp, from enhancing your app security and privacy to new customization features.
Add Expires Headers Blogger | Speed up Blog Loading Time
Add Expires headers blogger —
Blogger used to ask these questions on Google; What is an Expires Header? How to set up expires hHeaders on your blogger website? How can I make my blogger load faster? How to speed up web page loading time? How do I increase WordPress speed? How can I increase my website speed? How do I add expired headers in WordPress? How do I minimize HTTP requests in WordPress? And so on..
How to Serve static assets with an efficient cache policy in blogger platform? As a long time blogspot user, I must say, you just need to ignore this error warning. It has nothing to do with the visitors as it dosen't affect UX nor on UI. So be relax if you are also a blogspot blogger user as Google itself controlling your settings and so a static cache policy make your blog website much faster without any efforts.
In today's high-speed internet world, no one wanna wait, so try to get maximum blog loading speed both for desktop and mobile as well. Your visitors can bare with you for a couple of seconds. If your page does not get loaded quickly, your visitors will leave for sure.
In old days, you might have a simple HTML file for your blog which might have few images, some infographics, etc. to serve the needs of your readers. But, you might have enhanced and had turned your blog to the modern website. And now, you could have 50-60+ files on your single page. The files themselves take some time to load. Even-though request-response takes the fraction of a second to load those files, yet it will be high if you add them up altogether.

Add Expires headers in blogger website
Before moving ahead with how to add expires headers for your blogger, we need to know more about it like what it is? how does it work? why use it? etc.What is Expire Header?
Expire headers are related to webpage elements such as CSS, javascript, images, etc. What it does? it tells your browser that, whether they have to request a particular file from the server or whether it can be taken from browser's cache itself.Adding Expire Header in your HTML leads to reduce request-response time between your browser and server. As a result of this, if you test your web page loading time with the free mobile speed testing tools, it'll be clear that; it not just reduces loads of downloads from the server but also it helps to reduce number of HTTP request towards the server.
You also required to know; Remove Default Widget CSS bundle, Authorization.CSS To Get Fast Website Loading Speed
How does Expire Header works?
The 'Expires Headers' tell your browser about for how long a file has to be stored in the cache. Due to which, on subsequent page views, your visitors don't have to download the files, again and again.It might take some time to load your website for the first time where the visitor browser would take time to download all the files from the server. But using Expires Headers, it may help to decrease load times for returning visitors for sure.
Check out; Remove plusone.js JavaScript To Load Website Faster
Why use 'Expire Header'?
Below are a couple of reasons behind why to use Expire Headers.- Reduce server load.
- Decrease page load time.
- Reduce HTTP requests.
- Effective re-use of the cache files.
How to add 'Expires Headers' for your blog website?
Before implementing this step, first check your blog template first with with GTmetrix. Enter your blog URL and click on Analyze button. Wait for few minutes, it will analyze and display your blog performance report on screen. You may note this result so that it will help you compare after you implement steps to add expires headers.Add below code right above
</head>
code in your blogger HTML template.
<include expiration='7d' path='*.css'/>Now, save your HTML blogger template, and check template preview.
<include expiration='7d' path='*.js'/>
<include expiration='3d' path='*.gif'/>
<include expiration='3d' path='*.jpeg'/>
<include expiration='3d' path='*.jpg'/>
<include expiration='3d' path='*.png'/>
<meta http-equiv="expires" content="sat, 02 jun 2024 00:00:00 GMT"/>
If everything is working fine on your website preview, again check your performance report from GTmetrix site. You may compare latest results with the one you took before adding Expires headers.
Before leaving try to check [JavaScript] Lazy Load Facebook Like Box To Speed up Page Load Time
I’m sure by adding Expires header, you will definetely going to reduce server load, it also helps to decrease page loading time and reduce multiple HTTP requests.