not exactly correct, this is not for woocommerce, this is for the review post. see the following function, it's retrieving data from meta key - review_post, not from _review_post_pros_text
from wp-content/themes/rehub-theme/functions/affiliate_functions.php
Line 694
function rh_review_frontend_fields($current_values, $form_id){
$currentReview = get_post_meta( $current_values['post_id'], 'review_post' );
$currentReviewscore = (get_post_meta( $current_values['post_id'], 'rehub_review_overall_score', true ) !='') ? get_post_meta( $current_values['post_id'], 'rehub_review_overall_score', true ) * 10 : 0;
if (!empty($currentReview)){
$review_heading = $currentReview[0][0]['review_post_heading'];
$review_summary = $currentReview[0][0]['review_post_summary_text'];
$review_proses = $currentReview[0][0]['review_post_pros_text'];
$review_conses = $currentReview[0][0]['review_post_cons_text'];
}
ok