firescorpz Posted July 14, 2011 Share Posted July 14, 2011 Hi,I would like to add my website URL under my company's logo at my invoice. Is there anyway to do this, please advise me, thank you. Link to comment Share on other sites More sharing options...
shokinro Posted July 15, 2011 Share Posted July 15, 2011 you need to do some customization on the PDF invoice.please look into this file/classes/PDF.php Link to comment Share on other sites More sharing options...
marcellinho Posted July 18, 2011 Share Posted July 18, 2011 Hello. I´m going to change my PDF invoice in a few days, and I´ll write here the code needed. Link to comment Share on other sites More sharing options...
Dr. V. R. Iglesias Posted July 30, 2011 Share Posted July 30, 2011 Look for this lines at /classes/PDF.php : if (file_exists(_PS_IMG_DIR_.'/logo_invoice.jpg')) $this->Image(_PS_IMG_DIR_.'/logo_invoice.jpg', 10, 8, 40, 0); else if (file_exists(_PS_IMG_DIR_.'/logo.jpg')) $this->Image(_PS_IMG_DIR_.'/logo.jpg', 10, 8, 0, 15); Then add this: $this->Link(10, 8, 40, 20, 'http://'.$_SERVER['SERVER_NAME'].__PS_BASE_URI__); Change the 40 by your logo's width and the 20 by your logo's height. I hope, this helps you. Link to comment Share on other sites More sharing options...
Recommended Posts