Cache WordPress for offline use

You could use Teleport or some other crawler to create a “proper” offline version of the website. However, if your client would want to showcase posting something or some other functionality that requires database interaction, then you’re far better off using a local installation on XAMPP or alternatives of it (enable Apache and MySQL to … Read more

Cloud flare, cache, minify question [closed]

In general no, there is no advantage in having two caching entities in the way of each request. But you should be careful and understand how the caching works. For example cloudflare do not cache your pages in a central repository but each data center has its on cache so in an edge case you … Read more

WordPress website not showing changes without clearing cache

If the files are being cached, then whatever caching solution you are using is working! That’s why there’s a clear caching button available. Typically JS and CSS files will be cached. While you are in development I recommend changing the version of the file being cached. This can be done by updating the wp_enqueue_script (js … Read more

How to solve minify js and css first time load delay?

In the end, I used speed booster plugin to defer javascript and inline CSS. For minifying, I manually minify the .js script and .css files before hand. This helped to improve my pagespeed score without going through first load issue. Like Tom J Nowell suggested, do not use brute force hammer approach by using plugins … Read more