Any progress on this?
I’m using a template that we’ve used on another site that is working fine (this cart setup is basically a duplicate of that other site).
Mine also works if I use the “stripped down” version Chris suggested.
Here’s what I’m using:
<p>An order was placed at your website!</p>
<p>Order Information:</p>
{exp:weblog:entries weblog="orders" entry_id="ORDER_ID" show_future_entries="yes" status="not closed"}
{if no_results}
<p>Something went wrong, no order data found</p>
{/if}
<p>Order Number: {title}</p>
<table width="600" cellspacing="0" cellpadding="3">
<thead>
<tr>
<th align="left">Item name</th>
<th align="left">Quantity</th>
<th align="left">Price each</th>
<th align="left">Subtotal</th>
<th align="left">{if '{item:purchased_product_download_url}' != ''}Download{/if}</th>
</tr>
</thead>
<tbody>
{order_items}
<tr class="itemrow">
<td>{item:title}</td>
<td>{item:quantity}</td>
<td>{global-currency-symbol}{item:price}</td>
<td>{exp:cartthrob:arithmetic operator="*" num1="{item:quantity}" num2="{item:price}"}</td>
<td>{if '{item:purchased_product_download_url}' != ''}
<a href="{exp:cartthrob:view_download_link
template = '{path=store/downloads}'
file ='{item:purchased_product_download_url}'}">Download</a>
{/if}
</td>
</tr>
{/order_items}
<tr>
<td colspan="4" style="text-align:right">Subtotal</td><td>{global-currency-symbol}{order_subtotal}</td>
</tr>
<tr>
<td colspan="4" style="text-align:right">Tax</td><td>{global-currency-symbol}{order_tax}</td>
</tr>
<tr>
<td colspan="4" style="text-align:right">Shipping</td><td>
{if order_shipping=="0.00"}
FREE
{if:else}
{global-currency-symbol}{order_shipping}
{/if}
</td>
</tr>
<tr class="total">
<td colspan="4" style="text-align:right">Total</td><td>{global-currency-symbol}{order_total}</td>
</tr>
</tbody>
</table>
{if order_coupon}
<h4>Coupons</h4>
<p>A coupon was used for this order: {order_coupon}</p>
{/if}
{order_items}
{if '{item:personal_message}' != ''}
<h4>Your order will be personalized using the provided information:<br />{item:personal_message}</h4>
{/if}
{/order_items}
<h4>Shipping Address</h4>
<p>If your order has shippable items they will be sent to:</p>
{if order_shipping_address!=""}
<p class="shippingaddress">
{order_shipping_first_name} {order_shipping_last_name}<br />
{order_shipping_address}<br />
{if order_shipping_address2}{order_shipping_address2}<br>{/if}
{order_shipping_city}<br />
{order_shipping_state}
{order_shipping_zip}
</p>
{if:else}
<p class="shippingaddress">
{order_billing_first_name} {order_billing_last_name}<br />
{order_billing_address}<br />
{if order_billing_address2}{order_billing_address2}<br>{/if}
{order_billing_city}<br />
{order_billing_state}
{order_billing_zip}
</p>
{/if}
{/exp:weblog:entries}
Using version 0.9516.