You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
Is it possible to include a logo image in the printable order summary page?
How would I go about that?
Offline
mdowning wrote:
Is it possible to include a logo image in the printable order summary page?
How would I go about that?
Update "Order Summary (Printable XHTML Invoice)" from the following location:
System > Displays > Display Includes
Offline
I was pretty sure that was the correct display, but wasn't sure of where to edit the file and what the correct structure of the line should look like. Does it go on the very top before the ?php line?
That all looks like greek to me. I don't know how you do it. I just greatly appreciate that you KNOW this stuff.
Mark
Offline
mdowning wrote:
I was pretty sure that was the correct display, but wasn't sure of where to edit the file and what the correct structure of the line should look like. Does it go on the very top before the ?php line?
That all looks like greek to me. I don't know how you do it. I just greatly appreciate that you KNOW this stuff.
Mark
Very top would work, however you'll have to look at where you want it placed, and adjust the code to fit that. If you can tell us, perhaps someone here can help?
Offline
I would like it centered over the busines name.
Offline
I'd also like to insert a logo in the printable order summary. PHP experts please provide the code for this.
print '<div class="center">' . $eol . $eol;
THIS IS WHERE I WOULD LIKE TO INSERT MY LOGO
print '<p class="big">' . $site_name . '</p>' . $eol . $eol;
print '<p>' . $address . '</p>';
Last edited by geraldz (10-23-2011 10:15:50)
Offline
print '<img src="path/to/your/logo/yourlogo.jpg" alt="This is my logo">';
Offline
@Dave - that worked. Thanks!
Offline