Hi All,
My site is based in Australia and I'm having no end of problems trying to get
a consistant price to show for the cart contents value. I use...
document.write("Items: " + getCartItem(3)+" ");
document.write("Value: " + getCartItem(1));
to display the cart value. The problem I have is when you 1st add an item
to the cart say at $100 it displays $100, If I now visit checkout ever it now thinks it knows the postage so adds that on too say $9. The cart value using getcartitem(1) now always shows $109. The user hasn't selected a method of shipment yet so the extra $9 is wrong.
To get round this I want to only show ex-shipping values and when you visit the checkout never show the shipping price and method on order00.htm. Only after the user has selected the shipping class do I want it to show the shipping costs.
Any ideas?
PS. for the Actinic developers, can you do something about Actinic shipping in Australia please, It needs to be postcode based as the country is too large to have a one size fits all approach.
My site is based in Australia and I'm having no end of problems trying to get
a consistant price to show for the cart contents value. I use...
document.write("Items: " + getCartItem(3)+" ");
document.write("Value: " + getCartItem(1));
to display the cart value. The problem I have is when you 1st add an item
to the cart say at $100 it displays $100, If I now visit checkout ever it now thinks it knows the postage so adds that on too say $9. The cart value using getcartitem(1) now always shows $109. The user hasn't selected a method of shipment yet so the extra $9 is wrong.
To get round this I want to only show ex-shipping values and when you visit the checkout never show the shipping price and method on order00.htm. Only after the user has selected the shipping class do I want it to show the shipping costs.
Any ideas?
PS. for the Actinic developers, can you do something about Actinic shipping in Australia please, It needs to be postcode based as the country is too large to have a one size fits all approach.
Comment