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
Letters are replaced with the question marks in the PDF. How do I fix it?
The issue is rooting in the DOMPDF library our extension is built on. Sometimes it fails to recognize specific fonts or locales. In order to fix this, you need to embed an external font in the template. If you're facing difficulties with the Chinese ...
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 ...
How to change the 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-cofigured templates that could be used for each type of the order-related document: Order, Invoice, Shipment ...
If I create the invoice with the Magento API, will the PDF be based on the Amasty template?
If the extension is installed and enabled, PDF will be generated on the Amasty template basis.
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 ...