ohhhh, okay, I just removed the code. But I will try this. It did not remove the tx sales tax column. Here is the code I am left with.
Code:
{* $Id: cart_contents.tpl,v 1.22 2004/07/07 08:25:41 svowl Exp $ *}
<TABLE border="0" cellpadding="5" cellspacing="1" width="100%">
<TR class="TableHead">
<TD>{$lng.lbl_qty}</TD>
<TD>{$lng.lbl_sku}</TD>
<TD>{$lng.lbl_product}</TD>
<TD align="right">{$lng.lbl_price}</TD>
<TD align="right">{$lng.lbl_total}</TD>
</TR>
{section name=prod_num loop=$products}
<TR{cycle values=", class='TableSubHead'"}>
<TD class="ProductPriceSmall">{if $config.Appearance.allow_update_quantity_in_cart eq "N" or ($active_modules.Egoods and $products[prod_num].distribution) or ($active_modules.Subscriptions and $products[prod_num].sub_plan)}{$products[prod_num].amount}{else}<INPUT type="text" size="3" name="productindexes[{$products[prod_num].cartid}]" value="{$products[prod_num].amount}">{/if}</TD>
<TD>{$products[prod_num].productcode}</TD>
<TD>{$products[prod_num].product|truncate:30:"...":true}</TD>
<TD class="ProductPriceSmall" align="right">{include file="currency.tpl" value=$products[prod_num].display_price}</TD>
{math equation="x*y" x=$products[prod_num].display_price y=$products[prod_num].amount assign="total"}
<TD class="ProductPriceSmall" align="right">{include file="currency.tpl" value=$total}</TD>
</TR>
{/section}
{if $active_modules.Gift_Certificates ne ""}
{include file="modules/Gift_Certificates/gc_checkout.tpl"}
{/if}
</TABLE>