hey thanks! I couldnt figure out the fields that were in the orders struct. Is there a place where they are defined?
i did something like this in orders.tpl (only support ups):
Code:
<td width=90% class=Text {include file="main/order_colors.tpl"}>
{if $orders[cat_num].shippingid == 0 &&
$orders[cat_num].shipping_cost == "0.00"}
FREE
{elseif $orders[cat_num].shippingid == 1}
UPS Ground
{elseif $orders[cat_num].shippingid == 2}
UPS World
{elseif $orders[cat_num].shippingid == 23}
UPS 3 Day
{elseif $orders[cat_num].shippingid == 75}
UPS Canada
{else}
???
{/if}
</td>
works good!!! thanks man!
[/code]