Fix reviews + use functions in reviews tab.
This commit is contained in:
parent
9f82986109
commit
67c5fd1794
|
@ -177,6 +177,7 @@ Yes you can! Join in on our [GitHub repository](http://github.com/woothemes/wooc
|
|||
* Fix - prettyPhoto next/prev links and thumbnail navigation no longer appear when there's only one attachment
|
||||
* Fix - Attribute base
|
||||
* Fix - Fixed adjust_price method in product class, allowing negative adjustments
|
||||
* Fix - Ratings and rating count transient syncing.
|
||||
* Localization - Added indian rupees
|
||||
* Localization - Updated French translation by absoluteweb
|
||||
* Localization - Updated Brazilian translaction by Claudio Sanches
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
*
|
||||
* @author WooThemes
|
||||
* @package WooCommerce/Templates
|
||||
* @version 1.6.4
|
||||
* @version 2.0.3
|
||||
*/
|
||||
global $woocommerce;
|
||||
global $woocommerce, $product;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
||||
|
||||
|
@ -17,26 +17,11 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|||
|
||||
if ( get_option('woocommerce_enable_review_rating') == 'yes' ) {
|
||||
|
||||
$count = $wpdb->get_var( $wpdb->prepare("
|
||||
SELECT COUNT(meta_value) FROM $wpdb->commentmeta
|
||||
LEFT JOIN $wpdb->comments ON $wpdb->commentmeta.comment_id = $wpdb->comments.comment_ID
|
||||
WHERE meta_key = 'rating'
|
||||
AND comment_post_ID = %d
|
||||
AND comment_approved = '1'
|
||||
AND meta_value > 0
|
||||
", $post->ID ) );
|
||||
|
||||
$rating = $wpdb->get_var( $wpdb->prepare("
|
||||
SELECT SUM(meta_value) FROM $wpdb->commentmeta
|
||||
LEFT JOIN $wpdb->comments ON $wpdb->commentmeta.comment_id = $wpdb->comments.comment_ID
|
||||
WHERE meta_key = 'rating'
|
||||
AND comment_post_ID = %d
|
||||
AND comment_approved = '1'
|
||||
", $post->ID ) );
|
||||
$count = $product->get_rating_count();
|
||||
|
||||
if ( $count > 0 ) {
|
||||
|
||||
$average = number_format($rating / $count, 2);
|
||||
$average = $product->get_average_rating();
|
||||
|
||||
echo '<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">';
|
||||
|
||||
|
|
|
@ -1274,6 +1274,7 @@ function woocommerce_add_comment_rating($comment_id) {
|
|||
add_comment_meta( $comment_id, 'rating', (int) esc_attr( $_POST['rating'] ), true );
|
||||
|
||||
delete_transient( 'wc_average_rating_' . esc_attr($post->ID) );
|
||||
delete_transient( 'wc_rating_count_' . esc_attr($post->ID) );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue