uppo questo topic perchè ancora non sono arrivato alla soluzione.
se vi lascio il codice dei commenti va bene? così capisco meglio dove mettere mano...
Codice PHP:
<div class="leave-comment">
<?php if ( post_password_required() ) : ?>
<p class="nopassword"><?php _e( 'Questo articolo è protetto da password. Inserisci la password per visualizzare i commenti.', 'yiw' ); ?></p>
<?php
return;
endif;
?>
<?php if ( have_comments() ) : ?>
<div class="comments-header"><span class="n-comments"><?php comments_number(__('0', 'yiw'), __('1', 'yiw'), __('%', 'yiw')); ?></span><span class="text">commenti</span></div>
<ol class="commentlist">
<?php
wp_list_comments( array( 'type' => 'comment' ) );
?>
</ol>
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?>
<p class="clear"></p>
<ul class="portfolio-pager">
<li><a href="<?php previous_comments_link(); ?>">NEWER</a></li>
<li class="last-child"><a href="<?php next_comments_link(); ?>">OLDER</a></li>
</ul>
<?php endif; ?>
<?php else : // o, se non ci sono commenti
/* Se non ci sono commenti e i commenti sono chiusi */
if ( ! comments_open() ) :
?>
<p class="nocomments"><?php _e( 'I commenti sono chiusi.', 'yiw' ); ?></p>
<?php endif; // end ! comments_open() ?>
<?php endif; // end have_comments() ?>
<?php if ( comments_open() ) : // se i commenti sono permessi aggiungiamo il modulo che permette di commentare ?>
<div id="respond">
<!-- START TITLE LEAVE A REPLY -->
<p class="clear"></p>
<h3>LASCIA UN COMMENTO</h3>
<!-- END TITLE LEAVE A REPLY -->
<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
<!-- START MESSAGE REQUEST REGISTRATION COMMENTS -->
<p><?php printf(__('Devi eseguire il <a href="%s">login</a> per inserire un commento.', 'yiw'), get_option('siteurl') . '/wp-login.php?redirect_to=' . urlencode(get_permalink())); ?></p>
<!-- END MESSAGE REQUEST REGISTRATION COMMENTS -->
<?php else : ?>
<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
<?php if ( $user_ID ) : ?>
<p><?php printf(__('Sei loggato come <a href="%1$s">%2$s</a>.'), get_option('siteurl') . '/wp-admin/profile.php', $user_identity); ?> <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="<?php _e('Logout da questo account', 'yiw'); ?>"><?php _e('Log out »', 'yiw'); ?></a></p>
<?php endif; ?>
<p><label>Commento <?php if ($req) _e("*"); ?></label>
<textarea name="comment" id="comment" cols="100%" rows="10" tabindex="1"></textarea></p>
<?php if ( !$user_ID ) : ?>
<fieldset>
<p><label>Nome <?php if ($req) _e("*"); ?></label>
<input type="text" value="<?php echo $comment_author; ?>" tabindex="2" /></p>
<p><label for="email">Email (non verrà pubblicato) <?php if ($req) _e("*"); ?></label>
<input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" tabindex="3" /></p>
<p><label for="url">Website</label>
<input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" tabindex="4" /></p>
<p><input name="submit" type="submit" id="submit" tabindex="5" value="INVIA" /><?php comment_id_fields(); ?></p>
<?php do_action('comment_form', $post->ID); ?>
</fieldset>
</form>
<?php endif; ?><p>* obbligatorio</p>
</div><!-- #respond -->
<?php endif; ?>
</div><!-- #comments -->
<?php endif; ?>