Hi,
I'm trying to implement an Amazon-style review system (= the comments review corresponding pages/posts). I've managed to display rating stars in the comments form and submitted ratings in individual comments for posts but encounter two problems:
1. Rating in comments form is only shown for post comments - NOT for page comments.
2. Comment review ratings simply don't ever get saved... (normal post ratings do)
I use WP 2.7 and K2 RC7 rev743. I've inserted the following code:
comments.php
<div>
<label for="wp_gdsr_new_comment_review">
<strong>Rating</strong>
</label>
<input type="hidden" name="wp_gdsr_new_comment_review" id="wp_gdsr_new_comment_review" value="<?php echo wp_gdsr_new_comment_review(); ?>"
</div>
display.php
<?php if (function_exists('wp_gdsr_show_comment_review')): ?>
<?php echo wp_gdsr_show_comment_review(); ?>
<?php endif; ?>