-
Logo File Location
Hi All,
I am using version 1.5.8a and I am trying to locate the location of the logo for invoices and packing slips but having no luck in doing so. I have changed several images but it is not changing the logo to what I want for some reason.
Any help would be appreciated.
-
Re: Logo File Location
Place your logo image in YOUR_ADMIN/images. Then create a file named /YOUR_ADMIN/includes/languages/extra_definitions/lang.english-override.php containing
PHP Code:
<?php
$define = [
'HEADER_LOGO_IMAGE' => 'logo-2.gif', //- Whatever the image is named
'HEADER_LOGO_WIDTH' => '300', //- The image's dimensions.
'HEADER_LOGO_HEIGHT' => '57',
];
return $define;
That image will then be displayed on the admin login page, each admin page's header and on invoices and packingslips.
-
1 Attachment(s)
Re: Logo File Location
Hi lat9,
Thank you that worked as it should and I now have my images.
One other issue I have is on the invoice it is showing between the shop details and the logo is The Phone and Fax. How do I remove that. Image attached.
Attachment 20430
-
Re: Logo File Location
That content between the shop name/address and logo isn't there in a 'base' ZC install. What's set in the Configuration :: My Store :: Store Address and Phone?
-
Re: Logo File Location
Hi lat9,
Thank you very much for the helpful advice and once again it worked as it should.