Notes In Invoice and Quotation

Hi, may i know, did the note section in quote and invoice section did not support html?

If it did not support html, can you assist me or guide me how to change that? Thanks

To output HTML you have to change your corresponding PDF templates.

There is a line near the bottom <?php echo nl2br(htmlsc($invoice->invoice_terms)); ?>

Change this to <?php echo nl2br($invoice->invoice_terms); ?> if you want to keep line breaks or <?php echo $invoice->invoice_terms; ?> if you want to output the HTML as it is.

1 Like

Thanks, it works like a charm :smiley: