Sales Tax

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
SamsSteins
Lieutenant Commander (LCDR)
Lieutenant Commander (LCDR)
Posts: 92
Joined: Thu Jul 10, 2008 11:43 am
Location: Lancaster PA
Contact:

Sales Tax

Post by SamsSteins » Fri Mar 27, 2009 8:39 am

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?

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: Sales Tax

Post by mazhar » Fri Mar 27, 2009 8:52 am

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.

Post Reply