User wants to remove the Balance Forward line (first line) within the Customer Statement using the Advanced PDF/HTML Template.
Solution
- Navigate to Customization > Forms > Transaction Forms
- Preferred Statement Form: Click Customize
- Print Template: Make a note of the Name
- Navigate to Customization > Forms > Advanced PDF/HTML Templates
- Click Edit/Customize by the Template from step 3
- Top right corner: Toggle Source Code
- Source Code: Add an if-else tag on the line item part to skip the first line
Example:
<#if line_index==0><#else>
<tr><td colspan=”3″>${line.datecol}td>
<td colspan=”12″>${line.description}td>
<td align=”right” colspan=”3″>${line.charge}td>
<td align=”right” colspan=”4″>${line.payment}td>
<td align=”right” colspan=”4″>${line.balance}td><tr>
</#if> - Click Save