Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter atmeurer

    (@atmeurer)

    That worked perfect… thanks for your help and patience ??

    Thread Starter atmeurer

    (@atmeurer)

    here is the script from my content.php:

    <?php if( is_category() ) { global $withcomments; $withcomments = 1; comments_template(); } ?>
    <?php while (have_posts()) : the_post(); ?>
      <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
        <div class="leftinfo">
         <?php FloatingLight_datestyle();?>
          <p>Category:<br />
            <?php the_category('<br /> ') ?>
          </p>
          <p>
            <?php the_tags('TAG:<br />', ' <br /> ' , ''); ?>
          </p>
          <p> <p>COMMENTS:<br /><?php comments_popup_link('No Comments »','1 Comment »','% Comments »', '','Comments Closed' ); ?>
    </p>
    
              <p>        <?php edit_post_link('Edit ', '', ''); ?>
    </p>
        </div>
        <div class="righttext">
          <h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>">
            <?php the_title(); ?>
            </a></h2>
    
          <div class="entry">
          <?php if ( ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) || in_category( 'gallery' ) ) : ?>
          <a href="<?php echo get_post_format_link( 'gallery' ); ?>" title="View Galleries">
         More Galleries
          </a>
          <?php endif;?>
          <?php the_content('<span class="more">Read the rest of this entry >></span>'); ?>
          <?php wp_link_pages(array('before' => '<div class="page-link"><strong>Pages:</strong> ', 'after' => '</div>', 'next_or_number' => 'number')); ?>
          </div>
    
        </div>
        <div class="cb"></div>
      </div>
      <?php endwhile; ?>

    Where do i add that line? I tried adding it at the top and got the same result.. one comments section at the top of the page and not under each post. Thanks.

    Thread Starter atmeurer

    (@atmeurer)

    Thread Starter atmeurer

    (@atmeurer)

    I am sorry, but i am limited in my ability.. could you show where that should go?

    also, just to clarify.. the scripts i mentioned above both worked.. just that they only showed 1 comments pane at the bottom of the page. i want a comments section at the bottom of each post. Thanks much for your help!

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