William-EDIS Posted March 16, 2012 Share Posted March 16, 2012 Hi! I'd need to disable the footer numbering ("Page X / Y") completely due to a law conflict here. Does anyone know how to do that? Thanks William 0 Quote Link to comment Share on other sites More sharing options...
tripler Posted March 16, 2012 Share Posted March 16, 2012 Settings > General Settings > untick the pdf option alternatively You can edit /templates/(active template)/invoicepdf.tpl Note: quotes sent as pdf can also be edited ... I think its quotespdf.tpl or something like that EDIT* is this what you are referring too? /* ** This code should be uncommented for EU companies using the sequential invoice numbering so that when unpaid it is shown as a proforma invoice ** if ($status!="Paid") { $invoiceprefix = $_LANG["proformainvoicenumber"]; } */ 0 Quote Link to comment Share on other sites More sharing options...
William-EDIS Posted March 16, 2012 Author Share Posted March 16, 2012 No, we modified the PDF already heavily - It is fine this way and we can't disable it. So i am quite used to the invoicepdf.tpl by now but it has no option for this, neither i am able to locate the variable for it. Basically, if you print a PDF invoice (or open the PDF for that matter) it shows on the bottom "Page 1 / 1" - i need to remove this information form the PDF. 0 Quote Link to comment Share on other sites More sharing options...
sparky Posted March 16, 2012 Share Posted March 16, 2012 open includes/tcpdf.php go to line 4519 $this->Cell(0, 0, $pagenumtxt, 0, 0, 'C'); and comment it like this // $this->Cell(0, 0, $pagenumtxt, 0, 0, 'C'); That will remove the line number completly from the pdfinvoice 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.