sorry for the amount of comments, but i also needed this code: `
<?php do_action( ‘comment_form_top’ ); ?>
<?php
if ( is_user_logged_in() ) :
echo apply_filters( ‘comment_form_logged_in’, $args[‘logged_in_as’], $commenter, $user_identity );
do_action( ‘comment_form_logged_in_after’, $commenter, $user_identity ); ?>
<?php else : ?>
<?php echo $args[‘comment_notes_before’]; ?>
<?php
/**
* Fires before the comment fields in the comment form.
*
* @since 3.0.0
*/
do_action( ‘comment_form_before_fields’ );
foreach ( (array) $args[‘fields’] as $name => $field ) {
/**
* Filter a comment form field for display.
*
* The dynamic portion of the filter hook, $name, refers to the name
* of the comment form field. Such as ‘author’, ’email’, or ‘url’.
*
* @since 3.0.0
*
* @param string $field The HTML-formatted output of the comment form field.
*/
echo apply_filters( “comment_form_field_{$name}”, $field ) . “\n”;
}
/**
* Fires after the comment fields in the comment form.
*
* @since 3.0.0
*/
do_action( ‘comment_form_after_fields’ );
?>
</div>
<?php endif; ?>
`
to properly show the given ratings per comment. See the comments files of your wordpress installation to make sure you have all the hooks. but the above code should fix it all ??