Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #219938

    I’m currently being flooded with tens of mails and phone calls about our website displaying just a white screen. This is supposed to be a fullscreen slider, but it’s not loading.

    This is the site: http://goo.gl/6Zldrz

    I’ve tested several browsers, browser versions and operating systems, but windows 7 with IE9 confirms it. IE8 shows problems too, though.
    Please help asap, most of my visitors use this browser and operating system and this means everyone sees just a blank screen!!

    • This topic was modified 10 years, 9 months ago by DavyE.
    #219986

    I think I found a possible cause. IE Compatibility View enabled breaks the entire site, disabling it fixes everything. Now I’m looking for a way to force disable this view with something like this:
    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    #220021

    I think I’ve fixed it by adding the following code to functions.php:

    add_filter('wp_headers', 'cdfie_add_header');
    function cdfie_add_header($headers)
    {
        $headers['X-UA-Compatible'] = 'IE=edge,chrome=1';
        return $headers;
    }
    #220585

    Hi!

    Glad you fixed it! I have checked your website on IE9 mode on Win7 and it seems to be working fine. Let us know if you have any other questions or issues

    Cheers!
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘URGENT: Fullscreen slider in IE9 (Windows 7) not loading!!’ is closed to new replies.