View Single Post
  #1  
Old 02-12-2010, 04:59 PM
  shipmerchant's Avatar 
shipmerchant shipmerchant is offline
 

eXpert
  
Join Date: Mar 2005
Posts: 361
 

Smile Add thumbnail image on email invoice.

I paid some Xcart points some time ago on this and thought I would share it with some. It will add a product thumbnail image on the email invoice. Makes packing orders easier anyway.

You could also implement it on the great custom template found in http://forum.x-cart.com/showthread.php?t=42748&highlight=email+invoice

Or in your default Xcart Order_Data.tpl

Enjoy!

Code:
************* Code for custom -- skin1/mail/html/order_data.tpl Version 4.3.1************* You could also implement it on the great custom template found in http://forum.x-cart.com/showthread.php?t=42748&highlight=email+invoice Line 12 ~ 17 <tr> <th width="60" bgcolor="#cccccc">{$lng.lbl_sku}</th> {*image on invoice*} <th bgColor="#cccccc">{$lng.lbl_product}</th> <th bgColor="#cccccc">{$lng.lbl_image}</th> {if $order.extra.tax_info.display_cart_products_tax_rates eq "Y" and $_userinfo.tax_exempt ne "Y"} <td align="center"> {*end*} <th nowrap="nowrap" width="100" bgcolor="#cccccc">{if $order.extra.tax_info.product_tax_name ne ""}{$order.extra.tax_info.product_tax_name}{else}{$lng.lbl_tax}{/if}</th> {/if} ***Line 42 to 45*** <a href="{$catalogs.customer}/download.php?id={$product.download_key}" class="SmallNote" target="_blank">{$lng.lbl_download}</a> {/if} </td> {* added line 42 ~ 45 to add product image on email invoice width adjustment*} <TD align="center"> <img src="{$http_location}/image.php?id={$product.productid}" width="75"> </TD> {*end*} {if $order.extra.tax_info.display_cart_products_tax_rates eq "Y" and $_userinfo.tax_exempt ne "Y"} <td align="center"> ************* Code for Original -- Xcart Default skin1/mail/htmlorder_data.tpl Version 4.3.1************* Line 12 ~ 17 <tr> <th width="60" bgcolor="#cccccc">{$lng.lbl_sku}</th> {*image on invoice*} {*<th bgcolor="#cccccc">{$lng.lbl_product}</th>*} <th bgColor="#cccccc">{$lng.lbl_product}</th> <th bgColor="#cccccc">{$lng.lbl_image}</th> {*if $order.extra.tax_info.display_cart_products_tax_rates eq "Y" and $_userinfo.tax_exempt ne "Y"*} <td align="center"> </td> {if $order.extra.tax_info.display_cart_products_tax_rates eq "Y"} <td align="center"> {*end*} Line 47 to 50 <a href="{$catalogs.customer}/download.php?id={$product.download_key}" class="SmallNote" target="_blank">{$lng.lbl_download}</a> {/if} </td> {* added l 48 ~ 51 to add product image on email invoice width can be controlled also*} <TD align="center"> <img src="{$http_location}/image.php?id={$product.productid}" width="75"> </TD> {if $order.extra.tax_info.display_cart_products_tax_rates eq "Y" and $_userinfo.tax_exempt ne "Y"} <td align="center">

Here is a screen shot as well. Enjoy!
Attached Thumbnails
Click image for larger version

Name:	email_invoice.jpg
Views:	453
Size:	19.3 KB
ID:	1860  
__________________
Mil Mascaras
Live Xcart Site #1-V- 4.1.8
Live Xcart site # 2-V 4.4.3
CDSEO Mod - Firetank MM30 - 7DANA- The bestTemplates!
Linux - EWD Host Servers awesome service!
AlteredCart One Page Checkout
Reply With Quote