Support » Plugin: Kalin's PDF Creation Station » Page numbering

  • knoppys

    (@knoppys)


    How does one go about removing the top and bottom page borders and the page numbering?

    I am creating a company brochure using pages as the main content pages with posts as indivudual products. The top and bottom page borders and page numbering mess up my designs as im including page borders in my page HTML tables.

    https://wordpress.org/plugins/kalins-pdf-creation-station/

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

    (@kalinbooks)

    This I took from my post about this here: http://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.