Same “issue” here. Not that I m chasing numbers or anything but it might help the plugin to look better in benchmarks.
Looking at it again, I am using concatenation (it s called combine in the plugin) and the non premium version don’t offer option to minify concatenated files. So the real problem is html minify, browser caching and render blocking (there should be an option to make combined resources async in the plugin). Of course you need to let people decide because some js have to load before the page. Async would help for sure. In my case js is 397kb and there is no reason for it not to be async.
Hi @ jamiek47 and @ PeterKottas, if you want more speed, you need to buy the premium version.
Is there an option to make combined resources async in premium version ?
And what about the browser caching ? Have a clue why it shows up as unresolved issue ?
can you tell me the url please?
http://a.disquscdn.com/embed.js (5 minutes)
http://www.google-analytics.com/analytics.js (2 hours)
These are external js files so we cannot do anything for them 🙂
Ok that’s true. About the async (if you decide to implement which i think would be a good idea).
http://tipsforholiday.com/wp-content/cache/wpfc-minified/d3d3dd1f5dc34f2d90be29bbf7e7bcd2/1433944069index.js
http://tipsforholiday.com/wp-content/cache/wpfc-minified/d3d3dd1f5dc34f2d90be29bbf7e7bcd2/1433944069index.js
http://tipsforholiday.com/wp-includes/js/comment-reply.min.js?ver=4.2.2
http://tipsforholiday.com/wp-content/plugins/cornerstone/assets/js/dist/site/cs-body.min.js?ver=1.0.1
These are the js files that causes problems. They are in the top panel titled “Should Fix:”. Especialy the first one, that is the concatenated js which might be async but it’s not.
This is from the page head.
<script src="//tipsforholiday.com/wp-content/cache/wpfc-minified/fd71ce8aeb8291c5d38cc7a4690fab15/1433944069index.js" type="application/ld+json"></script>
<script src="//tipsforholiday.com/wp-content/cache/wpfc-minified/32deedd44e5f6cb998466dc3667cd2ce/1433944069index.js" type="application/ld+json"></script>
Yes, I will implement this feature but it is too difficult so I don’t hurry up.
Shouldn’t be to bad, you just need to put a check-box to the settings of the plugin and then rather than
<script src="//tipsforholiday.com/wp-content/cache/wpfc-minified/fd71ce8aeb8291c5d38cc7a4690fab15/1433944069index.js" type="application/ld+json"></script>
output :
<script async src="//tipsforholiday.com/wp-content/cache/wpfc-minified/fd71ce8aeb8291c5d38cc7a4690fab15/1433944069index.js" type="application/ld+json"></script>
Of course there’s a bit more to it but you’ll probably gain at least one user – me based on this feature so it should be worth it 🙂
Hi Emre,
So if I buy the premium version all of these recommendations will pass the Google’s Page Insights test?
If a page references external js files e.g. http://www.google-analytics.com/analytics.js then how on earth is that meant to be solved? That’s even a Google product!
So if I buy the premium version all of these recommendations will pass the Google’s Page Insights test?
Yes. If you are not satisfied, we can pay back.
If a page references external js files e.g. http://www.google-analytics.com/analytics.js then how on earth is that meant to be solved? That’s even a Google product!
Please show a website which solved this issue.