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!!
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">
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;
}