psychosonicsid Posted March 8, 2008 Share Posted March 8, 2008 Hi, Anyone know how to change the shop image on the pdf invoice / I want to have a different logo on the paperwork to that of the site.... Thx Link to comment Share on other sites More sharing options...
Zhivko Posted March 8, 2008 Share Posted March 8, 2008 Hi, Open file /classes/PDF.php and find the row $this->Image(_PS_IMG_DIR_.'/logo.jpg', 10, 8, 0, 15); _PS_IMG_DIR_ is the path to the image (/img folder). '/logo.jpg' is the name of the image. You may store your invoice logo to /img folder and name it inv_logo.jpg. In this case the code should be: $this->Image(_PS_IMG_DIR_.'/inv_logo.jpg', 10, 8, 0, 15); Link to comment Share on other sites More sharing options...
psychosonicsid Posted March 13, 2008 Author Share Posted March 13, 2008 Thx I will play... Kevin Link to comment Share on other sites More sharing options...
Recommended Posts