crazyfish Posted July 2, 2008 Share Posted July 2, 2008 How do I add a note to the invoices? I want to display some static text such as "If paying by cheque please make cheque payable to ...." I'm php skills are not very good, so I couldn't figure out how to do this. Thanks in advance. 0 Quote Link to comment Share on other sites More sharing options...
othellotech Posted July 3, 2008 Share Posted July 3, 2008 in pdfconfig, above the footer try something like .... $pdf->SetXY(10,210); # Set Location $pdf->SetTextColor(0, 0, 205); $pdf->SetFont('Arial', 'B', 6.5); # Use 6.5pt Text $pdf->MultiCell(180, 3, "Paying by Bank Transfer:", 0, 'J'); $pdf->SetFont('Arial', '', 6.5); # Use 6.5pt Text $pdf->MultiCell(180, 3, "Sort code: xx-xx-xx\nAccount Number: xxxxxxxxx\nAccount Name: xxxxxxxxx\nIBAN:xxxxxxxxxxxxxxxxxxx", 0, 'J'); 0 Quote Link to comment Share on other sites More sharing options...
chickendippers Posted July 3, 2008 Share Posted July 3, 2008 If a customer pays by cheque you should use the "Mail in Payment" gateway. That has a box where you can enter such instructions. 0 Quote Link to comment Share on other sites More sharing options...
crazyfish Posted July 3, 2008 Author Share Posted July 3, 2008 othellotech: I'll try that for the pdf invoice, adding the mail in payment didn't add the text to the pdf invoice. chickendippers: that worked for the online invoice 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.