if( fTotal < 8 ) fShipping = 2;
to this:
if( fTotal < 8 && fTotal > 0) fShipping = 2;
Or something similar.
Now, if someone could tell me why it's not passing the shipping on past the ManageCart page....
Moderator: scott
fTotal += (parseInt(fields[1]) * parseFloat(fields[2]) );
//Start fixed shipping calculation
if( fTotal < 50 )
fShipping = 6.00;
else
fShipping = 0.00;
//Finish fixed shipping calculation
if( fTotal < 15 && fTotal > 1) fShipping = 4.95;
else if( fTotal < 15 && fTotal > 50) fShipping = 6.95;
else fShipping = 0;
strShipping = moneyFormat(fShipping);else if( fTotal < 15 && fTotal > 50) fShipping = 6.95;Return to Installation and Setup Problems
Users browsing this forum: No registered users and 0 guests