Here I am sharing you the code which will help to show an additional / extra tab in woocommerce single product page, and show Advanced Custom fields info in the description of that tab . Just change the field info and put it in your theme’s function.php and save it.
if(! function_exists('new_tab')){
add_filter('woocommerce_product_tabs','new_tab');
function new_tab($tabs){
$tabs['my_tab']=array(
"title"=> "Product Review",
"priority"=> 35,
"callback" =>"tab_desc",
);
return $tabs;
}
function tab_desc(){
global $product;
$id = $product->get_id();
echo get_field('review',$id); ;
}
}
Feel free to do comments if you have any question.