• Trying to figure out why this isn’t working for enabling comments in a pop-up window. It’s currently just reloading the same page with a slightly different address appended to the domain.

    <?php comments_popup_script(); ?>  
    
    </head>
    <?php include '../includes/header.inc' ?>
    
          <div id="txt">
            <p>
    
    <!-- Get the last 3 posts. -->
    <?php query_posts('showposts=3'); ?>
    <?php while (have_posts()) : the_post(); ?>
    <strong>
    <?php the_title(); ?>
    </strong>
    <br />
    <?php the_date(); ?>
    
    <?php the_content(); ?>
    <br />
    
    <a href="<?php comments_link(); ?>">
          Comments to this post
    </a>
    
    <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>
    <div id="line"></div>
    <?php endwhile;?>
    <!-- End get last 3 posts. -->
    		</p>
    	  </div>
    <?php include '../includes/footer.inc' ?>
Viewing 12 replies - 1 through 12 (of 12 total)
Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Commenting problem’ is closed to new replies.