Magento – Display checkout success page print order in pdf

magento-1.9pdfprint

My checkout success page print order displays in html. When i print it using a webkit browser the table view is distorted. I think the best way to overcome this issue is to display the print order as PDF instead of html. How can i achieve this in magento?

The issue images available below

Normal view : http://postimg.org/image/xg4drghpz/

Print view : http://postimg.org/image/izh4cvs8n/

Best Answer

Magento uses different template for print view. You may check differences. It is very easy. Go to /app/design/frontend/your_package/your_theme/layout and look in sales.xml

Try to compare sales_order_view and sales_order_print sections. For invoices, shipments, creditmemos it will be similar.

Related Topic