Shor Description included on Order Confirmation

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
buffgal
Ensign (ENS)
Ensign (ENS)
Posts: 2
Joined: Tue Jul 14, 2009 7:34 pm

Shor Description included on Order Confirmation

Post by buffgal » Thu Oct 22, 2009 6:13 pm

is it possible to have the summary of a product, or a short description, included on the email order confirmation the customer receives?

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: Shor Description included on Order Confirmation

Post by mazhar » Fri Oct 23, 2009 3:50 am

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.

Post Reply