Have you tried using has_content. So <#if item....
# advancedpdf
j
Have you tried using has_content. So <#if item.somefiled?has_content> Value present</#if>
n
So <td colspan="12"><span class="itemname"><#if${item.cf}?has_content>${item.cf}</if>#else${item.name}</#else></span><br />${item.description}</td>
got it to work with:
Copy code
<#if item.cf?has_content>
    <td colspan="12"><span class="itemname">${item.ccf}</span><br />${item.description}</td>
<#else>
  <td colspan="12"><span class="itemname">${item.name}</span><br />${item.description}</td></#else></#if>
ty