Viewing 1 replies (of 1 total)
  • Plugin Author kalinbooks

    (@kalinbooks)

    This I took from my post about this here: https://kalinbooks.com/2011/customize-header-footer-pdf-creation/ so I’m not positive it’ll be totally correct (particularly the line numbers) but it should hopefully push you in the right direction.

    yes you can!, i′ve done it on mine, $objTcpdf->SetPrintHeader(false); $objTcpdf->SetPrintFooter(false);

    this lines are to remove the header or footer and have to be written on kalins_pdf_create.php somewhere around lines 218 – 220

    or search in the tcpdf.php file for –> public function Footer() { function and there you can add some text or change the black line

    for example to add some text on the left side of the footer i add

    $textofoot = utf8_decode(‘CONFIDENCIAL: La información aqui contenida,es para la evaluación del cliente.’);

    $this->writeHTML($textofoot);

Viewing 1 replies (of 1 total)
  • The topic ‘Page numbering’ is closed to new replies.