Comments plus, text box does not work!

Inactive
  • 8 points
    Getting my WPMU DEV Wings
    I'm new here
    hitman13

    Member  —  13th October 2011         

    My site: http://www.filmeshd.tv/transformers-3/

    comments.php

    <div id=&quot;comments&quot;>
    <?php if ( post_password_required() ) : ?>
    				<p class=&quot;nopassword&quot;><?php _e( 'This post is password protected. Enter the password to view any comments.', 'twentyten' ); ?></p>
    			</div><!-- #comments -->
    <?php
    
    		return;
    	endif;
    ?>
    <?php if ( have_comments() ) : ?>
    	<h3><?php comments_number('nenhum comentario', 'um comentario', '% comentario(s)' );?> | <a rel=&quot;nofollow&quot; href=&quot;#leave-comment&quot;>Quero comentar!</a></h3>
    <ol class=&quot;commentlist&quot;>
    	<?php wp_list_comments(array( 'callback' => 'newsleak_comment')); ?></ol>
    	<div class=&quot;navigation&quot;>
    		<div class=&quot;alignleft&quot;><?php previous_comments_link() ?></div>
    		<div class=&quot;alignright&quot;><?php next_comments_link() ?></div>
    	</div>
    
    <?php // End Comments ?>
    
     <?php else : // this is displayed if there are no comments so far 
    
    	if ( ! comments_open() ) :
    ?>
    		<!-- If comments are open, but there are no comments. -->
    
    		<!-- If comments are closed. -->
    		<p><?php _e('Sorry, the comment form is closed at this time.', 'news-leak'); ?></p>
    
    	<?php endif; ?>
    <?php endif; ?>
    
    <?php comment_form(array('title_reply'=>'Deixe um comentário')); ?>
    </div>