Support

Account

Home Forums General Issues Display Product Dimensions with ACF Reply To: Display Product Dimensions with ACF

  • Why do you want to use ACF to duplicate this info? WooCommerce stores that data in meta key/value pairs already. For instance, you can access length with something like:

    <?php echo get_post_meta($post->ID, '_length', true); ?>