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.
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.
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('
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('