Turning off lazy loading fixes the issue, but we don’t think that slowing down the entire website is a good solution.
You provided a fix for rss feeds for this exact same issue (see code below).
Would it be possible to send code to turn off lazy loading for the POST featured image only?
if( ! function_exists( ‘woodmart_lazy_loading_rss_deinit’ ) ) {
function woodmart_lazy_loading_rss_deinit() {
if ( is_feed() ) {
woodmart_lazy_loading_deinit(true);
}
}
add_action( ‘wp’, ‘woodmart_lazy_loading_rss_deinit’, 10 );
}