Thanks. Overall your homepage is performing pretty well, actually, getting a Lighthouse score of 88.
In looking at your homepage, I see that the first that the plugin is not identifying the first image as a hero and this is negatively impacting LCP:
The reason why it is not being identified as a hero is that there are two previous images that have already been determined as heroes, and currently we only make 2 images heroes. This we’re going to change soon as I’ve commented here: https://github.com/ampproject/amp-toolbox-php/issues/55#issuecomment-825913927
We should be including that change soon in 2.1.1.
—
However, more important than this image LCP is the fact that your server is responding slowly. In order to fix this make sure that you have good page caching configured. We’ve written a guide about this: https://amp-wp.org/documentation/getting-started/amp-site-setup/page-caching-with-amp-and-wordpress/
—
Two more important things to change:
- Your uploaded files are being served with a 4 hour max-age. This should be increased to something like a year. See https://web.dev/uses-long-cache-ttl/
- You’re using the Armata font and you’re loading it without
font-display:optional
. For that stylesheet, replace https://fonts.googleapis.com/css?family=Armata:regular
with https://fonts.googleapis.com/css?family=Armata:regular&display=optional
. Read more about this: https://web.dev/font-display/
-
This reply was modified 3 years, 7 months ago by Weston Ruter.
-
This reply was modified 3 years, 7 months ago by Weston Ruter.