Display the rating in product review admin emails in WooCommerce

Display the rating in product review admin emails in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'comment_moderation_text', 'wc_add_stars_woocommerce_moderate_comment_email', 9999, 2 );
 
function wc_add_stars_woocommerce_moderate_comment_email( $notify_message, $comment_id ) {
   $review = get_comment( $comment_id );
   if ( $review && 'product' === get_post_type( $review->comment_post_ID ) ) {
      $rating = intval( get_comment_meta( $comment_id, 'rating', true ) );
      $notify_message .= "\r\n" . sprintf( 'Product review rating: %s / 5', $rating ) . "\r\n";
   }  
   return $notify_message;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.