Hey @Allison,
Thanks for reaching out – to just display one field, I’d recommend doing a var_dump() on that $fields variable directly.
This will display all of the actual variable data for the fields.
And so if you see that the key for the field you want is, for example ‘allison_example’, then you could replace that foreach loop with this:
if ( isset( $fields['allison_example'] ) ) :
// display name and value however you want
endif;
We unfortunately cannot help much with custom code, but I hope there’s enough here regardless to make some sort of contribution to your project 🙂
Cheers!
George