01/22/2018 at 1:18 pm
#448373
Keymaster
@ Travis
You would use the PHP explode() to convert the string to an array then implode() back to a string. function in the template file.
Something like this:
$bits = explode( '|', $entry->getOrganization() );
echo implode( '<br>', $bits);
