|
These instructions are intended for a customer who needs step-by-step detail of each change. The itemization of each code modification is shown in the sections below. The heading of each section is the name of the email template. To begin, login to your merchant menu and go to Configure > Email > Templates. Find the name of the email template you wish to modify and click the EDIT icon. Or, you can download and edit the files manually using any standard text/html editor.
Make sure to remove any extraneous line breaks that may result from copying from this document.
Customer Order Notification - exclude hidden kit components
1) On, or near line 148, find:
#if (($orderItem.OrderItemType == "Product") || ($orderItem.OrderItemType == "Discount") || ($orderItem.OrderItemType == "Coupon") || ($orderItem.OrderItemType == "GiftWrap") )
Add && !$orderItem.IsHidden) to the end of the line so it looks like this:
#if ((($orderItem.OrderItemType == "Product") || ($orderItem.OrderItemType == "Discount") || ($orderItem.OrderItemType == "Coupon") || ($orderItem.OrderItemType == "GiftWrap")) && !$orderItem.IsHidden)
2) On, or near line 206, find:
#if (($orderItem.OrderItemType == "Product") || ($orderItem.OrderItemType == "Coupon") || ($orderItem.OrderItemType == "Discount"))
Add && !$orderItem.IsHidden) to the end of the line so it looks like this:
#if ((($orderItem.OrderItemType == "Product") || ($orderItem.OrderItemType == "Coupon") || ($orderItem.OrderItemType == "Discount")) && !$orderItem.IsHidden)
Gift Certificate Validated - exclude hidden kit components
1) On, or near line 153, find:
#if (($orderItem.OrderItemType == "Product") || ($orderItem.OrderItemType == "Discount") || ($orderItem.OrderItemType == "Coupon") || ($orderItem.OrderItemType == "GiftWrap") )
Add && !$orderItem.IsHidden) to the end of the line so it looks like this:
#if ((($orderItem.OrderItemType == "Product") || ($orderItem.OrderItemType == "Discount") || ($orderItem.OrderItemType == "Coupon") || ($orderItem.OrderItemType == "GiftWrap")) && !$orderItem.IsHidden)
2) On, or near line 207, find:
#if (($orderItem.OrderItemType == "Product") || ($orderItem.OrderItemType == "Coupon") || ($orderItem.OrderItemType == "Discount"))
Add && !$orderItem.IsHidden) to the end of the line so it looks like this:
#if ((($orderItem.OrderItemType == "Product") || ($orderItem.OrderItemType == "Coupon") || ($orderItem.OrderItemType == "Discount")) && !$orderItem.IsHidden)
License Key Fulfilled - exclude hidden kit components
1) On, or near line 121, find:
#if (($orderItem.OrderItemType == "Product"))
Add && !$orderItem.IsHidden) to the end of the line so it looks like this:
#if (($orderItem.OrderItemType == "Product") && !$orderItem.IsHidden)
Order Shipped - exclude hidden kit components
1) On, or near line 159, find:
#if (($orderItem.OrderItemType == "Product") || ($orderItem.OrderItemType == "Discount") || ($orderItem.OrderItemType == "Coupon") || ($orderItem.OrderItemType == "GiftWrap") )
Add && !$orderItem.IsHidden) to the end of the line so it looks like this:
#if ((($orderItem.OrderItemType == "Product") || ($orderItem.OrderItemType == "Discount") || ($orderItem.OrderItemType == "Coupon") || ($orderItem.OrderItemType == "GiftWrap")) && !$orderItem.IsHidden)
2) On, or near line 213, find:
#if (($orderItem.OrderItemType == "Product") || ($orderItem.OrderItemType == "Coupon") || ($orderItem.OrderItemType == "Discount"))
Add && !$orderItem.IsHidden) to the end of the line so it looks like this:
#if ((($orderItem.OrderItemType == "Product") || ($orderItem.OrderItemType == "Coupon") || ($orderItem.OrderItemType == "Discount")) && !$orderItem.IsHidden)
Order Shipped Partial - exclude hidden kit components
1) On, or near line 158, find:
#if (($orderItem.OrderItemType == "Product") || ($orderItem.OrderItemType == "Discount") || ($orderItem.OrderItemType == "Coupon") || ($orderItem.OrderItemType == "GiftWrap") )
Add && !$orderItem.IsHidden) to the end of the line so it looks like this:
#if ((($orderItem.OrderItemType == "Product") || ($orderItem.OrderItemType == "Discount") || ($orderItem.OrderItemType == "Coupon") || ($orderItem.OrderItemType == "GiftWrap")) && !$orderItem.IsHidden)
2) On, or near line 213, find:
#if (($orderItem.OrderItemType == "Product") || ($orderItem.OrderItemType == "Coupon") || ($orderItem.OrderItemType == "Discount"))
Add && !$orderItem.IsHidden) to the end of the line so it looks like this:
#if ((($orderItem.OrderItemType == "Product") || ($orderItem.OrderItemType == "Coupon") || ($orderItem.OrderItemType == "Discount")) && !$orderItem.IsHidden)
|