Can someone please help me to add my logo to the customer receipt that is emailed to them; I thought I saw how to do it ealier when I first started creating my site, but now I can't seem to find it. :)
thanksr
Receipts
The file is here: includes/modules/email_invoice/templates/box_invoice.php
If you just want to replace the current image (I don't remember what it is off the top of my head, it may be blank) replace this:
<td align="left"><?php echo '<img src="' . INVOICE_IMAGE . '" border="0" alt="' . INVOICE_IMAGE_ALT_TEXT . '" width="' . INVOICE_IMAGE_WIDTH . '" height="' . INVOICE_IMAGE_HEIGHT . '" hspace="10">'; ?></td>
with this (replacing image/your_logo.gif with the path to your image):
<td align="left"><?php echo '<img src="image/your_logo.gif" border="0" width="' . INVOICE_IMAGE_WIDTH . '" height="' . INVOICE_IMAGE_HEIGHT . '" hspace="10">'; ?></td>
Let me know if you need further help.
