2011-12-12 11:35:54 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Review Comments Template
|
|
|
|
*
|
2012-02-03 16:17:35 +00:00
|
|
|
* Closing li is left out on purpose!
|
2011-12-12 11:35:54 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
global $post;
|
|
|
|
?>
|
|
|
|
<li itemprop="reviews" itemscope itemtype="http://schema.org/Review" <?php comment_class(); ?> id="li-comment-<?php comment_ID() ?>">
|
|
|
|
<div id="comment-<?php comment_ID(); ?>" class="comment_container">
|
|
|
|
|
|
|
|
<?php echo get_avatar( $GLOBALS['comment'], $size='60' ); ?>
|
|
|
|
|
|
|
|
<div class="comment-text">
|
|
|
|
|
|
|
|
<div itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating" class="star-rating" title="<?php echo esc_attr( get_comment_meta( $GLOBALS['comment']->comment_ID, 'rating', true ) ); ?>">
|
2012-01-05 11:31:22 +00:00
|
|
|
<span style="width:<?php echo get_comment_meta( $GLOBALS['comment']->comment_ID, 'rating', true )*16; ?>px"><span itemprop="ratingValue"><?php echo get_comment_meta( $GLOBALS['comment']->comment_ID, 'rating', true ); ?></span> <?php _e('out of 5', 'woocommerce'); ?></span>
|
2011-12-12 11:35:54 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php if ($GLOBALS['comment']->comment_approved == '0') : ?>
|
2012-01-05 11:31:22 +00:00
|
|
|
<p class="meta"><em><?php _e('Your comment is awaiting approval', 'woocommerce'); ?></em></p>
|
2011-12-12 11:35:54 +00:00
|
|
|
<?php else : ?>
|
|
|
|
<p class="meta">
|
2012-02-24 17:28:13 +00:00
|
|
|
<?php _e('Rating by', 'woocommerce'); ?> <strong itemprop="author"><?php comment_author(); ?></strong> <?php _e('on', 'woocommerce'); ?> <time itemprop="datePublished" time datetime="<?php echo get_comment_date('c'); ?>"><?php echo get_comment_date(__('M jS Y', 'woocommerce')); ?></time>:
|
2011-12-12 11:35:54 +00:00
|
|
|
</p>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<div itemprop="description" class="description"><?php comment_text(); ?></div>
|
|
|
|
<div class="clear"></div>
|
|
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
|
|
|
</div>
|