Page 1 of 1

Shor Description included on Order Confirmation

Posted: Thu Oct 22, 2009 6:13 pm
by buffgal
is it possible to have the summary of a product, or a short description, included on the email order confirmation the customer receives?

Re: Shor Description included on Order Confirmation

Posted: Fri Oct 23, 2009 3:50 am
by mazhar
sure you can do that easily. For example if you want to display this information in descripion column of Email tempalte then locate following code in your order confirmation Email template

Code: Select all

$orderItem.Name
#if ($orderItem.VariantName.Length > 0)
($orderItem.VariantName)
#end
and replace it with

Code: Select all

$orderItem.Name
#if ($orderItem.VariantName.Length > 0)
($orderItem.VariantName)
#end
<br />
$orderItem.Product.Summary
$orderItem.Product.Summary statement will output summary field in Email template.