To display the list of product field values for a product in an order, insert the {PRODUCT-FIELD-VALUES} QuickCode Tag at the desired location within the appropriate product block (product block tags for each template are listed above).
For example, the following code in the SID 100: Order Receipt email template would insert the list of product field values on the line below the product name:
Products in this order:
{RECEIPT-PRODUCT-BLOCK-BEGIN}
PRODUCT: {PRODUCT-NAME}{IF-PRODUCT-FIELDS-BEGIN}
{PRODUCT-FIELD-VALUES}{IF-PRODUCT-FIELDS-END}
{RECEIPT-PRODUCT-BLOCK-END}
If the order contains a product named "Product A", for which the customer selected the value "1" for product field "Level" and the values "5A", "4B", and "2C" for the product field "Options"; and the product named "Product B", which does not have any product fields assigned, then the order receipt email would display the following:
Products in this order:
PRODUCT: Product A
Level: 1
Options: 5A, 4B, 2C
PRODUCT: Product B |