Fix for Infinity WordPress theme featured images not diplaying IE8
-
Hi All,
I had a problem with the Infinity theme not showing images in IE8 – I found the fix and thought I would share it here (theme as on my site here https://www.iphoneprojector.net )
In the theme editor, edit the theme-functions.php page and add the following lines of code after the first two lines:
function fix_ie8() {if (strpos($_SERVER['HTTP_USER_AGENT'],"MSIE 8")) {header("X-UA-Compatible: IE=7");}} add_action('send_headers','fix_ie8');
Hope this helps someone as it did me!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Fix for Infinity WordPress theme featured images not diplaying IE8’ is closed to new replies.