In lieu of being able to add more than one WYSIWYG/Tinymce using the Gravity Forms WYSIWYG plugin (or at least I don't seem to be able to) is it possible to output Standard Paragraph Text fields with their paragraph breaks intact? Can it be run through autop filter or similar?
EDIT: answered my own question. Posting as maybe useful to others but please mods delete if not wanted.
<?php $icep_objective = get_post_meta($post->ID, 'icep_objective', true);
if($icep_objective) : ?>
<h2>Objective</h2>
<div><?php echo apply_filters('the_content', $icep_objective); ?></div>
<?php endif; ?>