• On my page http://claimyourtreasure.com/shedding/ the iPad keeps blurring two of the images but leaves the image of the tree sharp. I’ve tried changing the sizes of the other two, I’ve tried an image responsive plugin, but still blurred. Any suggestions? It seems to load fine on the iPhone, just a problem on the iPad.

Viewing 1 replies (of 1 total)
  • Hey there,

    Try adding below code to your theme’s functions.php file and see if it makes things any better.

    add_filter('wp_get_attachment_image_attributes', function($attr) {
        if (isset($attr['sizes'])) unset($attr['sizes']);
        if (isset($attr['srcset'])) unset($attr['srcset']);
        return $attr;
    }, PHP_INT_MAX);
    add_filter('wp_calculate_image_sizes', '__return_false', PHP_INT_MAX);
    add_filter('wp_calculate_image_srcset', '__return_false', PHP_INT_MAX);
    remove_filter('the_content', 'wp_make_content_images_responsive');

    Hope it helps.

Viewing 1 replies (of 1 total)

The topic ‘Blurred images on iPad’ is closed to new replies.