How do I get ACF fields to show from a PHP file?

That didn’t help.

I did discover something, though.

I posted the following in a code block.

<?php if ( have_rows( 'customer_delivery' ) ) : ?>
<?php while ( have_rows( 'customer_delivery' ) ) : the_row(); ?>
	<?php $customer_po = get_sub_field( 'customer_po' ); ?>
	<?php if ( $customer_po ) : ?>
		<?php $post = $customer_po; ?>
		<?php setup_postdata( $post ); ?> 
		<?php $customer = get_field( 'customer', $customer_po ); ?>
		<a href="<?php echo get_permalink( $customer ); ?>"><?php echo get_the_title( $customer ); ?></a>
		<?php wp_reset_postdata(); ?>
		<?php $customer_address = get_field('address', $customer_po); ?>
		<?php $customer_address_2 = get_field('address_2', $customer_po); ?>
		<?php $customer_phone = get_field('phone', $customer_po); ?>
		<?php $customer_city = get_field('city', $customer_po); ?>
		<?php $customer_zip = get_field('zip', $customer_po); ?>
		<?php $customer_sic = get_field('sic', $customer_po); ?>
		<p><?php echo $customer_address; ?>,
		<?php echo $customer_address_2; ?></p>
		<p><?php echo $customer_city; ?>  
		<?php echo $customer_zip; ?></p>
		<p><?php echo $customer_phone; ?></p>
		<p><?php echo $customer_sic; ?></p>
	<?php endif; ?>
	<?php the_sub_field( 'special_instructions' ); ?>
	<?php the_sub_field( 'reason' ); ?>
	<?php if ( get_sub_field( 'pick_up_check' ) == 1 ) : ?>
		<?php // echo 'true'; ?>
	<?php else : ?>
		<?php // echo 'false'; ?>
	<?php endif; ?>
	<?php if ( get_sub_field( 'alternate_address' ) == 1 ) : ?>
		<?php // echo 'true'; ?>
	<?php else : ?>
		<?php // echo 'false'; ?>
	<?php endif; ?>
	<?php the_sub_field( 'temporary_address' ); ?>
	<?php the_sub_field( 'items' ); ?>
<?php endwhile; ?>
<?php else : ?>
    <?php // No rows found ?>
<?php endif; ?>

All of a sudden the customer fields I was looking for appeared: address, address_2, etc. It seems that changing all “get_field” references from “$customer” to “$customer_po” brought the data in. (As you noted above!)

One problem: in the template builder, the “$customer_po” name/link shows correctly; in the front end, it shows the post name/link. That’s not usable.

But that’s not what I want to achieve, anyway. I did some searching, and found a link to this: SOLVED: Dynamic data calls to ACF relationship field no longer works - #12 by ainom

itchycode posted some screenshots that seemed to indicate that Dynamic Data inside a Text Element could be referenced and displayed when using Post Object fields. I would much rather use Bricks fields as opposed to manipulating the above code to format it.

Basically, what I’m asking is how do I change “{acf_address}” to render what I need as oppsed to using “<?php $customer_address = get_field('address', $customer_po); ?>” ?