Page 1 of 1

Sales Tax

Posted: Fri Mar 27, 2009 8:39 am
by SamsSteins
Currently when going through the checkout process the Order Summary on the checkout page shows the total with sales tax. I was wondering is there a way for sales tax to not show automatically, until it is confirmed in checkout that it needs to be added?

Re: Sales Tax

Posted: Fri Mar 27, 2009 8:52 am
by mazhar
Place following code in Pre_Render method of ConLib/BasketTotalSummary.ascx.cs files

Code: Select all

TaxesLabel.Visible = (taxes > 0);
        Taxes.Visible = (taxes > 0);
Place this code at very end of method.