PDF Footer only be showed on invoice

Dear Sir/Madam,

I set the PDF Footer, I read the description of this, the footer should be showed on both invoice and quote, but I can only find it from invoice. There is not footer on quote. I read the template but could not find the code where it is.

Best regards,

Kelvin.

Please stop posting support questions to the general forum. We have a support forum for these requests.

And no, the footer should be displayed on all PDFs, not only the invoice ones.

Sorry for my mistake when selecting the forum. In fact I didn’t see the footer on quote, what can I do to troubleshoot it?

This post seems to have moved to the correct section.

I too am experiencing the same problem where anything entered in the “PDF Footer” field in the Settings->Invoices page does not appear on the pdf generated for quotes. In effect, the PDF Footer does not show on Quotes.

It seems that this was issue IP-267 (see: https://development.invoiceplane.com/browse/IP-267) but it has since been marked as closed.

Currently running version 1.4.6

The issue has been solved in the development-branch https://github.com/lommes/InvoicePlane/commit/5aef1737c2f8da176dcb4189d2e510ff4c435522
but as far as I understand the necessary changes have not been transfered to the master and are not available in v1.4.6

I have the issue in v1.4.10, below is the piece of ‘helpers/mpdf_helper.php’ that I believe restricts the footer to only invoices.
Is it possible to give me adapted code to put there and get the footer also in quotes. The edits shown in https://github.com/lommes/InvoicePlane/commit/5aef1737c2f8da176dcb4189d2e510ff4c435522 do not match the current code anymore.
Thanks

// Set the footer if voucher is invoice and if set in settings
    if ($isInvoice && !empty($CI->mdl_settings->settings['pdf_invoice_footer'])) {
        $mpdf->setAutoBottomMargin = 'stretch';
        $mpdf->SetHTMLFooter('
' . $CI->mdl_settings->settings['pdf_invoice_footer'] . '
'); }

my fix is editing ‘helpers/mpdf_helper.php’ and removing the first part of the double test above:

// Set the footer if voucher is invoice and if set in settings
    if (!empty($CI->mdl_settings->settings['pdf_invoice_footer'])) {
        $mpdf->setAutoBottomMargin = 'stretch';
        $mpdf->SetHTMLFooter('
' . $CI->mdl_settings->settings['pdf_invoice_footer'] . '
'); }