Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter mmunsee

    (@mmunsee)

    *bump*

    Hey mmunsee,

    It’s in page.php. try to remove this line of code:

    <?php if (function_exists('wp_list_comments')) { comments_template('', true); } else { comments_template(); } ?>

    Hope that helps.

    look into single.php of your theme and see if you can find:

    <?php comments_template(); ?>

    adding a conditional statement around it might solve your problem:

    <?php if ( comments_open() ) : ?>
    	<?php comments_template(); ?>
    <?php endif; ?>

    if not, you may need to post the code of single.php and comments.php (use a pastebin and post the link to it here) and someone might have a look at it.

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

The topic ‘comments box in the way’ is closed to new replies.