Magento Firecheckout and Fooman PDF customizer

by Peter D.

Magento doesn't allow to modify pdf printing without model rewriting. If you have extension that redefines pdf printing, you have to disable pdf model override in CheckoutFields extension. Open app/code/local/TM/CheckoutFields/etc/config.xml and find the following lines:

<rewrite> <!-- Overriden to add the fields block above products list --> <order_pdf_shipment>TM_CheckoutFields_Model_Order_Pdf_Shipment</order_pdf_shipment> <order_pdf_invoice>TM_CheckoutFields_Model_Order_Pdf_Invoice</order_pdf_invoice> </rewrite>

Replace them with:

<rewrite> <!-- Overriden to add the fields block above products list --> <!-- <order_pdf_shipment>TM_CheckoutFields_Model_Order_Pdf_Shipment</order_pdf_shipment> --> <!-- <order_pdf_invoice>TM_CheckoutFields_Model_Order_Pdf_Invoice</order_pdf_invoice> --> </rewrite> 

Recent articles

Back to top