Jump to content

$_LANG["invoicesnotes"] contents


totallytech

Recommended Posts

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?

Link to comment
Share on other sites

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!!!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated