• ensworth

    (@ensworth)


    I use the theme switcher plugin for my blog, and currently have three themes available. In Firefox and Safari, all themes work fine, but in Internet Explorer, the Island After Sunset theme will not load. IE indicates page has loaded, but only the header is shown. I want the use this theme as my primary …

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter ensworth

    (@ensworth)

    The url for my blog is https://www.firstcongucc.org/weblog/.

    Thread Starter ensworth

    (@ensworth)

    This code for index.php. Any apparent issues that block loading in IE?

    <?php get_header(); ?>

    <div id=”content”>

    <?php if (have_posts()) : ?>

    <?php while (have_posts()) : the_post(); ?>

    <div class=”post” id=”post-<?php the_ID(); ?>”>

    <h2>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2>

    <div class=”entry”>
    <?php the_content(‘<p>Read the rest of this entry »</p>’); ?>
    </div>

    <div class=”postmetadata”><p>Posted by <?php the_author(); ?> on <?php the_time(‘d M Y’) ?> at <?php the_time() ?> under <?php the_category(‘, ‘) ?> | <?php comments_popup_link(‘No Comments’, ‘1 Comment’, ‘% Comments’); ?>
    <?php edit_post_link(‘Edit this entry’, ‘ | ‘, ”); ?>
    </p></div>

    </div>

    <?php endwhile; ?>

    <div class=”navigation”>
    <div class=”align-right”><?php previous_posts_link(‘Next Entries »’) ?></div>
    <div class=”align-left”><?php next_posts_link(‘« Previous Entries’) ?></div>
    </div>

    <?php else : ?>

    <div class=”post”>
    <h2>Page Not Found</h2>
    <div class=”entry”>
    <p>Sorry, the page you tried to access cannot be found.</p>
    </div>
    </div>

    <?php endif; ?>

    </div> <!– end of content div –>

    <?php get_sidebar(); ?>

    <?php get_footer(); ?>

    vkaryl

    (@vkaryl)

    Well, I don’t use IE period. But the first thing I would do if this were me would be to comment out the themeswitcher stuff and see if JUST that theme loads properly in IE. If not, then you know it’s JUST that theme, not something in the themeswitcher itself. If the theme loads fine, then it’s probably something in the themeswitcher (most likely in combination with another or some others of your active plugins).

    Then you can go merrily about an infinity of time of troubleshooting for the world’s most broken browser…. starting with disabling all plugins, to see if the theme works at a baseline “vanilla” point. If not, then something in the theme itself is likely the culprit.

    If the theme loads fine at baseline, add your plugins back one at a time until the theme breaks again – and that plugin’s the problem.

    Good luck.

    Thread Starter ensworth

    (@ensworth)

    Thank you for the suggested plan of attack. That makes sense. I don’t use IE period either (a terrible browser!) but the majority of folks looking at the blog do, so I want it to work for them.

    vkaryl

    (@vkaryl)

    Oh yeah, I hear that…. my life is made thoroughly miserable by the number of people who simply refuse to look at a better browser.

    Sheeple….

    Post back how it goes, okay?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘“Island After Sunset” theme will no load in Internet Explorer’ is closed to new replies.