get custom field from product id acf code example
Example 1: get custom field
/* put this code in home.php file create in child theme */
<?php
/*Template Name: Home Template*/
echo get_post_meta($post->ID, 'Name', true);
?>
/* Or use this code */
<?php
$value =get_field('Name');
echo $value;
?>
Example 2: get field object acf
get_field_object('content', post_id);