Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • I’m having the same issue (and a couple others now). Time to look into changing my theme, too…

    Thread Starter atomiclauren

    (@inkvisitor)

    ^Yes, I initially did that and saw the “end tag for “div” omitted, but OMITTAG NO was specified.”

    Problem is, I can’t find any self closed or unclosed div.

    If it is a PHP problem like shown above, I have been unsuccessful in fixing that as well.

    Thread Starter atomiclauren

    (@inkvisitor)

    ^Thanks – I checked with the theme creator’s page, and their page with the theme has a sidebar and footer on single posts.

    I also checked the single.php file and the sidebar and footer php statements are there. Here is the code for single.php:

    <?php get_header(); ?>
    <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>
    <div class=”post single” id=”post-<?php the_ID(); ?>”>
    <div class=”post-header”>
    <div class=”date”> <?php the_time(‘M j’) ?> <span><?php the_time(‘y’) ?></span></div>
    <h1><?php the_title(); ?></h1>
    <div class=”author”>by <?php the_author() ?></div>
    </div><!–end post header–>
    <div class=”entry clear”>
    <?php the_content(‘read more…’); ?>
    <?php edit_post_link(‘Edit This’,'<p>’,'</p>’); ?>
    <?php wp_link_pages(); ?>
    </div><!–end entry–>
    <div class=”meta clear”>
    <p>From <?php the_category(‘, ‘) ?> </p>
    <div class=”tags”><?php the_tags(‘<span>Tags</span> <p>’, ‘, ‘, ‘</p>’); ?></div>

    </div><!–end meta–>
    </div><!–end post–>
    <?php endwhile; /* rewind or continue if all posts have been fetched */ ?>
    <?php comments_template(”, true); ?>
    <?php else : ?>
    <?php endif; ?>
    </div><!–end content–>
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    Thread Starter atomiclauren

    (@inkvisitor)

    I was thinking that, but on the dummy page I used plain text and not a lot of it. The default theme did the same thing in that situation.

    If it is a div issue, which seems plausible, I can’t find where to correct it, especially since I have done nothing to the code to begin with.

    Thread Starter atomiclauren

    (@inkvisitor)

    Tried a few more things, and nothing! Bah!

    Thread Starter atomiclauren

    (@inkvisitor)

    After taking one more round at deleting comment-related code in page and post files, it finally worked. I would not recommend this though, because if I decide to enable comments in the future, I have no idea how…

    Thread Starter atomiclauren

    (@inkvisitor)

    Tried deleting comment-related files, and nothing!

    Lost cause?

    Thread Starter atomiclauren

    (@inkvisitor)

    Edit – i noticed that the first post has comments enabled when clicked on, and others do not…

Viewing 8 replies - 1 through 8 (of 8 total)