• I just worked on this new theme for like 3 days. I used most of the pre typed html from an old layout that had no problems. Now that I have it looking how I want, comments will not work. You can click on them to leave one or read one and all you see the blog entry but no place to comment. If anyone had any suggestions on what to do, please let me know!!! If you need any code or anything also let me know.

    http://un-blurred.org

Viewing 5 replies - 1 through 5 (of 5 total)
  • ok so can you please post your loop code, or the code where you are calling on the comment system, do you have a separate comment.php page
    and did you make it or are u using a premade one form another them or so on

    Thread Starter unblurred

    (@unblurred)

    Here is my index.php file. I do have a comments.php page but I just uploaded it from the kubrick theme. Would that be the problem?

    <?php get_header(); ?>
    
    	<div id="blog" class="narrowcolumn">
    
    	<?php if (have_posts()) : ?>
    
    		<?php while (have_posts()) : the_post(); ?>
    
    			<div class="post" id="post-<?php the_ID(); ?>">
    				<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
    				<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
    
    				<div class="entry">
    					<?php the_content('Read the rest of this entry &raquo;'); ?>
    				</div>
    
    				<p class="postmetadata">Posted in <?php the_category(', ') ?> |  <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
    			</div>
    
    		<?php endwhile; ?>
    
    		<div class="navigation">
    			<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
    			<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
    		</div>
    
    	<?php else : ?>
    
    		<h2 class="center">Not Found</h2>
    		<p class="center">Sorry, but you are looking for something that isn't here.</p>
    		<?php include (TEMPLATEPATH . "/searchform.php"); ?>
    
    	<?php endif; ?>
    
    	</div>
    
    <?php get_sidebar(); ?>
    
    <?php get_footer(); ?>
    Thread Starter unblurred

    (@unblurred)

    any help?

    ok maybe try this

    <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>

    and just call on the comments with
    ‘ <?php comments_template(); ?>

    i just want to see what will happen, just a small test

    Thread Starter unblurred

    (@unblurred)

    So switch out the first line with <?php comments_template(); ?> ?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘New theme and now comments won’t work’ is closed to new replies.