Viewing 7 replies - 16 through 22 (of 22 total)
  • Thread Starter waffenss

    (@waffenss)

    no on everyone it has to be in the code because i deleted old theme installed new instead of just updating like i did yesterday. Still all post site wide are fully expanded all options theme and WP set to SUMMARY works fine on v.1.2.3 soon as i try 1.3 options of summary are over ridden

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    I think if you start a new thread you’ll be more likely to get help about this issue.

    Thread Starter waffenss

    (@waffenss)

    I do not think he replies here at all no post so far only on his site he will post a status no support for this from author it seems

    Theme Author hxh90

    (@hxh90)

    Sorry guys for the late reply, For some reason I didn’t get any email notification from wp.org.

    To fix bug on IE, please remove this line from header.php

    <!--[if lt IE 9]>
                <script src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script>
                <link rel="stylesheet" type="text/css" href="ie8-and-down.css" />
            <![endif] -->

    Then, on function.php add this line.

    /***************************************************************/
    /* add ie conditional html5 shim to header  */
    /***************************************************************/
    add_action('wp_head', 'add_ie_html5_shim');
    
    function add_ie_html5_shim () {
        echo '<!--[if lt IE 9]>';
        echo '<script src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script>';
        echo '<![endif]-->';
    }

    For IE 8 Bug with post thumbnail/featured image, please add this css to your style.css

    img, video, select {
    	height: auto;
    	max-width: 100%;
    	max-width: none\9;
    }

    I’ve already check the Demo page on IE 9 and IE 8, no bug found so far.

    I’ll add this fix on the next update and sorry for the inconveniences.

    Theme Author hxh90

    (@hxh90)

    Fixed on version 1.4.1

    I installed the new version of the theme 1.4.1 (never had the old one installed) and when I bring up my webpage the theme styling is all messed up in IE10. It works fine in all other browsers. I found IE was automatically switching the standards to IE8 Standards. For compatibility mode, I have both the display all intranet sites and display all websites in compatibility view unselected.

    I found a solution on stackoverflow.com, https://stackoverflow.com/questions/13284083/ie10-renders-in-ie7-mode-how-to-force-standards-mode. I ended up removing the meta tag from the header.php and replacing it with

    <?php header(‘X-UA-Compatible: IE=edge’); ?>

    This fixed my problem. I found by modifying the meta tag to be

    <meta http-equiv=”X-UA-Compatible” content=”IE=10,IE=9,IE=8″ />

    worked also, but I’m going to stick with the header instead of the meta tag. I hope this helps if anyone has the same issue.

    As per the Forum Welcome, please post your own topic.

Viewing 7 replies - 16 through 22 (of 22 total)
  • The topic ‘Theme is broke in IE’ is closed to new replies.