Jun 27th, 2011, 5:20 AM
Almost... but weird you're not seeing the comma delimited output. I just tested it locally and it works fine for me. Change it to this:
That should only output the comma-delimited value, not the original value. I have to ask: are you sure the submission you're testing with has a value in that field?
- Ben
Code:
{if $ANSWER_loan_type}
<tr>
<td style="font-weight: bold">Loan Type</td>
<td>{assign var=arr value="|"|explode:$ANSWER_loan_type}
{", "|implode:$arr}</td>
</tr>
{/if}
That should only output the comma-delimited value, not the original value. I have to ask: are you sure the submission you're testing with has a value in that field?
- Ben