totallytech Posted October 2, 2014 Share Posted October 2, 2014 Hey All, I'm customising my quotepdf page, and I'm trying to add my notes... On the admin page, there is a section for Proposal Text and Customer Notes On the tpl I see: if ($notes) { $pdf->Ln(10); $pdf->SetFont('freesans','',; $pdf->MultiCell(170,5,$_LANG["invoicesnotes"].": $notes"); } but there is nothing to show the proposal text.... Any ideas what the code is to show it? 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted October 2, 2014 Share Posted October 2, 2014 there should be something along the lines of the code below in your quotepdf.tpl template (it's certainly in default & portal) if ($proposal) { $pdf->SetFont('freesans','',9); $pdf->MultiCell(170,5,$proposal); $pdf->Ln(10); } 0 Quote Link to comment Share on other sites More sharing options...
totallytech Posted October 2, 2014 Author Share Posted October 2, 2014 there should be something along the lines of the code below in your quotepdf.tpl template (it's certainly in default & portal) if ($proposal) { $pdf->SetFont('freesans','',9); $pdf->MultiCell(170,5,$proposal); $pdf->Ln(10); } Oh man, I'm quite sure you are about the only person who regularly replies on here! lol Many thanks, yet again you've saved me, my files must have been from such an old version, and I keep forgetting to check the default one to look for code!!! 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.