How do I embed the footer on every page in the multi-page PDF?
In order to place the footer on every page in the multi-page PDF, please go to Marketing > PDF Templates > open the template and add the following code at the beginning of the <body>:
<div class="footer">
<p>Footer</p>
</div>
Once done, apply additional styles in the Template Styles block:
.footer {
position: fixed; left: 0; right: 0; height: 70px; width: 100%;
background-color: red; color: white; text-align: center; z-index: 1;bottom: 0;
}
Related Articles
How to modify the footer?
The site footer that you can see on the storefront consists of the default Magento footer links and the ones added by the Jet Theme extension. Due to that, only several sections of the footer are fully customizable via our module. The first available ...
If I create the invoice with the Magento API, will the PDF be based on the Amasty template?
If our PDF Customizer extension is enabled in the admin area, order-related PDF files will be generated on the Amasty template basis both when invoices are created via API and when they're created manually in the backend.
Letters are replaced with question marks or other broken symbols in the PDF. How do I fix it?
The issue is rooting in the external dompdf library our extension is using to convert HTML code into PDF. Sometimes it fails to recognize specific fonts or locales. There are 2 alternative ways to fix this: 1. Switch to mPDF library. Starting from ...
How to change CSS styling (for example, background color) in PDF templates?
Using the PDF Customizer module, it is possible to adjust the PDF documents according to your needs. By default, the extension provides 4 pre-configured templates that could be used for each type of the order-related document: Order, Invoice, ...
How to add the Cookie Setting link to a website's footer?
By default, the Cookie Settings link is added to the footer automatically as soon as the module is installed. However, themes, customizations, etc. may affect this and prevent the link from appearing automatically. To manually add the Cookie Settings ...