payment_method is text field.
<td> <b>{$t.member_name}</b> </td>
<td> {$t.transaction_time.datetime} </td>
<td> {$t.amount|string_format:"%.2f"} </td>
- <td> {if $t.payment_method}{$payment_methods[$t.payment_method]}{/if} </td>
+ <td> {if !empty($t.payment_method)}{$t.payment_method}{/if} </td>
<td> {$t.payment_data} </td>
</tr>
<tr id="payment-container-{$t.id}" class="glm-payment-links glm-hidden{if $t@iteration is div by 2} alternate{/if}">
</tr>
{/foreach}
{else}
- <tr class="alternate"><td colspan="2">(no Payments listed)</td></tr>
+ <tr class="alternate"><td colspan="5">(no Payments listed)</td></tr>
{/if}
</tbody>
</table>