I have all the settings setup to allow comments on my Blog postings. However, when you click on the link to post a comment nothing happens. Attached is my comments.php file Also the site is www.djjigs.com Thanks in Advance!
<?php if ( have_comments() ) : ?>
<h2 id="comments-title">
<?php comments_number(__('No Comments', 'stylico'), __('1 Comment', 'stylico'), __('% Comments', 'stylico')); ?>
</h2>
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?>
<nav id="comment-nav-above">
<h1 class="assistive-text"><?php _e( 'Comment navigation', 'stylico' ); ?></h1>
<div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'stylico') ); ?></div>
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'stylico') ); ?></div>
</nav>
<?php endif; ?>
<ol class="commentlist">
<?php wp_list_comments( 'callback=stylico_comment' ); ?>
</ol>
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
<nav id="comment-nav-below">
<h1 class="assistive-text"><?php _e( 'Comment navigation', 'stylico'); ?></h1>
<div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'stylico') ); ?></div>
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'stylico') ); ?></div>
</nav>
<?php endif; ?>
<?php
elseif ( ! comments_open() && ! is_page() && post_type_supports( get_post_type(), 'comments' ) ) :
?>
<p class="nocomments"><?php _e( 'Comments are closed.', 'stylico'); ?></p>
<?php endif; ?>
<?php comment_form( array( 'comment_notes_after' => '', 'label_submit' => __('Send Comment', 'stylico') ) ); ?>